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
PhoenixCompareFile
Commits
9207b252
Commit
9207b252
authored
May 20, 2021
by
Pierre Aubert
Browse files
Add dedicated function to add library with system link for program version
parent
b25d246a
Pipeline
#120251
passed with stages
in 2 minutes and 11 seconds
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
cmake/CMakeLists.txt
cmake/CMakeLists.txt
+1
-0
cmake/phoenix_add_library.cmake
cmake/phoenix_add_library.cmake
+17
-0
No files found.
cmake/CMakeLists.txt
View file @
9207b252
...
...
@@ -8,6 +8,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 @
9207b252
# 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
)
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