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
PhoenixBinaryAnalyzer
Commits
cc0609e0
Commit
cc0609e0
authored
May 20, 2021
by
Pierre Aubert
Browse files
Add dedicated function to add library with system link for program version
parent
af884bf7
Pipeline
#120005
passed with stages
in 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 @
cc0609e0
...
...
@@ -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 @
cc0609e0
# 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 @
cc0609e0
...
...
@@ -4,7 +4,7 @@
file
(
GLOB offsetFinder_src
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/*.cpp"
)
add_library
(
phoenix_binary_analyzer_lib SHARED
${
offsetFinder_src
}
)
phoenix_
add_library
(
phoenix_binary_analyzer_lib SHARED
${
offsetFinder_src
}
)
file
(
GLOB headers
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/*.h"
)
install
(
FILES
${
headers
}
DESTINATION include/PhoenixBinaryAnalyzer
)
...
...
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