Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abseil-cpp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
abseil-cpp
Commits
73b908fb
Commit
73b908fb
authored
Aug 22, 2018
by
Loo Rong Jie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Migrate some internal base targets
parent
027ebfdb
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
33 deletions
+26
-33
absl/base/CMakeLists.txt
+26
-33
No files found.
absl/base/CMakeLists.txt
View file @
73b908fb
...
...
@@ -83,20 +83,17 @@ absl_library(
base
)
# throw delegate library
set
(
THROW_DELEGATE_SRC
"internal/throw_delegate.cc"
)
absl_library
(
TARGET
absl_throw_delegate
SOURCES
${
THROW_DELEGATE_SRC
}
PUBLIC_LIBRARIES
${
THROW_DELEGATE_PUBLIC_LIBRARIES
}
PRIVATE_COMPILE_FLAGS
${
ABSL_EXCEPTIONS_FLAG
}
EXPORT_NAME
absl_cc_library
(
NAME
throw_delegate
SRCS
"internal/throw_delegate.cc"
HDRS
"internal/throw_delegate.h"
COPTS
${
ABSL_EXCEPTIONS_FLAG
}
DEPS
absl::base
)
...
...
@@ -131,29 +128,25 @@ absl_library(
${
DYNAMIC_ANNOTATIONS_SRC
}
)
# spinlock_wait library
set
(
SPINLOCK_WAIT_SRC
"internal/spinlock_wait.cc"
)
absl_library
(
TARGET
absl_spinlock_wait
SOURCES
${
SPINLOCK_WAIT_SRC
}
absl_cc_library
(
NAME
spinlock_wait
SRCS
"internal/spinlock_wait.cc"
HDRS
"internal/scheduling_mode.h"
"internal/spinlock_wait.h"
)
# malloc_internal library
list
(
APPEND MALLOC_INTERNAL_SRC
absl_cc_library
(
NAME
malloc_internal
SRCS
"internal/low_level_alloc.cc"
)
absl_library
(
TARGET
absl_malloc_internal
SOURCES
${
MALLOC_INTERNAL_SRC
}
PUBLIC_LIBRARIES
HDRS
"internal/direct_mmap.h"
"internal/low_level_alloc.h"
DEPS
absl_dynamic_annotations
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment