Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dynamic-graph
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stack Of Tasks
dynamic-graph
Commits
6a0aa99a
Commit
6a0aa99a
authored
3 years ago
by
Guilhem Saurel
Browse files
Options
Downloads
Patches
Plain Diff
[CMake] fix CMP0115
parent
359a9e30
No related branches found
No related tags found
No related merge requests found
Pipeline
#15645
passed
3 years ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/CMakeLists.txt
+1
-1
1 addition, 1 deletion
src/CMakeLists.txt
tests/CMakeLists.txt
+2
-2
2 additions, 2 deletions
tests/CMakeLists.txt
with
3 additions
and
3 deletions
src/CMakeLists.txt
+
1
−
1
View file @
6a0aa99a
...
...
@@ -9,7 +9,7 @@ SET(tracer-real-time_deps tracer)
FOREACH
(
plugin
${
plugins
}
)
GET_FILENAME_COMPONENT
(
LIBRARY_NAME
${
plugin
}
NAME
)
ADD_LIBRARY
(
${
LIBRARY_NAME
}
SHARED
${
plugin
}
)
ADD_LIBRARY
(
${
LIBRARY_NAME
}
SHARED
"
${
plugin
}
.cpp"
)
IF
(
SUFFIX_SO_VERSION
)
SET_TARGET_PROPERTIES
(
${
LIBRARY_NAME
}
PROPERTIES SOVERSION
${
PROJECT_VERSION
}
)
...
...
This diff is collapsed.
Click to expand it.
tests/CMakeLists.txt
+
2
−
2
View file @
6a0aa99a
...
...
@@ -7,7 +7,7 @@ ADD_DEFINITIONS(-DTESTS_PLUGINDIR="${LIBRARY_OUTPUT_PATH}")
ADD_DEFINITIONS
(
-DTESTS_DYNLIBSUFFIX=
"
${
CMAKE_SHARED_LIBRARY_SUFFIX
}
"
)
MACRO
(
DYNAMIC_GRAPH_TEST NAME
)
ADD_UNIT_TEST
(
${
NAME
}
${
NAME
}
.cpp
)
ADD_UNIT_TEST
(
${
NAME
}
"
${
NAME
}
.cpp
"
)
TARGET_LINK_LIBRARIES
(
${
NAME
}
PRIVATE
${
PROJECT_NAME
}
Boost::unit_test_framework
)
ENDMACRO
(
DYNAMIC_GRAPH_TEST
)
...
...
@@ -15,7 +15,7 @@ ENDMACRO(DYNAMIC_GRAPH_TEST)
SET
(
signalcast_libs signal-cast-registerer-libA signal-cast-registerer-libB
)
FOREACH
(
lib
${
signalcast_libs
}
)
ADD_LIBRARY
(
${
lib
}
SHARED
${
lib
}
)
ADD_LIBRARY
(
${
lib
}
SHARED
"
${
lib
}
.cpp"
)
TARGET_LINK_LIBRARIES
(
${
lib
}
PRIVATE
${
PROJECT_NAME
}
)
ENDFOREACH
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment