Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
B
brpc
Project
Project
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
brpc
Commits
e1a6a2ab
Commit
e1a6a2ab
authored
Jun 03, 2019
by
zhujiashun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
separate_cmake_debug_and_release_obj: make the name of obj in debug and release be consistent
parent
de126985
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
CMakeLists.txt
src/CMakeLists.txt
+4
-4
No files found.
src/CMakeLists.txt
View file @
e1a6a2ab
...
...
@@ -7,17 +7,17 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR})
include_directories
(
${
PROJECT_SOURCE_DIR
}
/src
)
add_library
(
BUTIL_LIB OBJECT
${
BUTIL_SOURCES
}
)
add_library
(
OBJ
_LIB OBJECT
${
SOURCES
}
)
add_library
(
SOURCES
_LIB OBJECT
${
SOURCES
}
)
# shared library needs POSITION_INDEPENDENT_CODE
set_property
(
TARGET
${
OBJ
_LIB
}
PROPERTY POSITION_INDEPENDENT_CODE 1
)
set_property
(
TARGET
${
SOURCES
_LIB
}
PROPERTY POSITION_INDEPENDENT_CODE 1
)
set_property
(
TARGET
${
BUTIL_LIB
}
PROPERTY POSITION_INDEPENDENT_CODE 1
)
add_library
(
brpc-shared SHARED $<TARGET_OBJECTS:BUTIL_LIB>
$<TARGET_OBJECTS:
OBJ
_LIB>
$<TARGET_OBJECTS:
SOURCES
_LIB>
$<TARGET_OBJECTS:PROTO_LIB>
)
add_library
(
brpc-static STATIC $<TARGET_OBJECTS:BUTIL_LIB>
$<TARGET_OBJECTS:
OBJ
_LIB>
$<TARGET_OBJECTS:
SOURCES
_LIB>
$<TARGET_OBJECTS:PROTO_LIB>
)
target_link_libraries
(
brpc-shared
${
DYNAMIC_LIB
}
)
...
...
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