Skip to content
Snippets Groups Projects
Commit 52d93a5a authored by Francois Keith's avatar Francois Keith
Browse files

Add a missing dependency between tracer-RT and tracer

tracer-real-time needs tracer.lib
parent 5fb54b81
No related branches found
No related tags found
No related merge requests found
......@@ -59,6 +59,8 @@ SET(plugins_list
traces/tracer-real-time
)
SET(tracer-real-time_dependancy tracer)
FOREACH(plugin_file ${plugins_list})
GET_FILENAME_COMPONENT(plugin ${plugin_file} NAME)
ADD_LIBRARY(${plugin}
......@@ -66,7 +68,7 @@ ADD_LIBRARY(${plugin}
"${plugin_file}.cpp")
TARGET_LINK_LIBRARIES(${plugin}
${PROJECT_NAME})
${PROJECT_NAME} ${${plugin}_dependancy})
SET_TARGET_PROPERTIES(${plugin}
PROPERTIES
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment