Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
CTA-LAPP
PHOENIX_LIBS
PhoenixDL
Commits
0328b24c
Commit
0328b24c
authored
May 20, 2021
by
Pierre Aubert
Browse files
Add dedicated function to add library with system link for program version
parent
de7b952e
Pipeline
#120008
passed with stages
in 2 minutes and 40 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
1 deletion
+19
-1
cmake/CMakeLists.txt
cmake/CMakeLists.txt
+1
-0
cmake/phoenix_add_library.cmake
cmake/phoenix_add_library.cmake
+17
-0
src/CMakeLists.txt
src/CMakeLists.txt
+1
-1
No files found.
cmake/CMakeLists.txt
View file @
0328b24c
...
...
@@ -7,6 +7,7 @@ if(NOT MODULE_MODE)
include
(
create_doc.cmake
)
include
(
environnement_prefix.cmake
)
include
(
create_find_project.cmake
)
include
(
phoenix_add_library.cmake
)
endif
()
cmake/phoenix_add_library.cmake
0 → 100644
View file @
0328b24c
# Add Shared library with suffix by respect to the program version set with the phoenix_base_project function
# targetName : name of the library target to be created
# ARGN : list of dependencies
function
(
phoenix_add_library targetName
)
add_library
(
${
targetName
}
SHARED
${
ARGN
}
)
string
(
REPLACE
"."
";"
PROGRAM_VERSION_LIST
${
PROGRAM_VERSION
}
)
list
(
GET PROGRAM_VERSION_LIST 0 PROGRAM_VERSION_SO
)
set_target_properties
(
${
targetName
}
PROPERTIES
VERSION
"
${
PROGRAM_VERSION
}
"
SOVERSION
"
${
PROGRAM_VERSION_SO
}
"
)
endfunction
(
phoenix_add_library
)
src/CMakeLists.txt
View file @
0328b24c
file
(
GLOB_RECURSE phoenix_dl_sources
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/*.cpp"
)
add_library
(
phoenix_dl
SHARED
${
phoenix_dl_sources
}
)
phoenix_
add_library
(
phoenix_dl
${
phoenix_dl_sources
}
)
target_link_libraries
(
phoenix_dl dl
)
install
(
TARGETS phoenix_dl LIBRARY DESTINATION
${
LIBRARY_DIRECTORY
}
ARCHIVE DESTINATION
${
LIBRARY_DIRECTORY
}
)
...
...
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