]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/TPCsim/CMakeLists.txt
Fixes for object target dependencies
[u/mrichter/AliRoot.git] / TPC / TPCsim / CMakeLists.txt
index d020fed423731bcde7f3f80eacb752d198a85604..3df3c54c05aea2618aeef76480572c214b7111ef 100644 (file)
@@ -73,11 +73,15 @@ add_library(${MODULE} SHARED $<TARGET_OBJECTS:TPCsim-object>)
 # Linking
 target_link_libraries(${MODULE} ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
 
+# Setting the correct headers for the object as gathered from the dependencies
+target_include_directories(${MODULE}-object PUBLIC $<TARGET_PROPERTY:${MODULE},INCLUDE_DIRECTORIES>)
+set_target_properties(${MODULE}-object PROPERTIES COMPILE_DEFINITIONS $<TARGET_PROPERTY:${MODULE},COMPILE_DEFINITIONS>)
+
 # Public include folders that will be propagated to the dependecies
 target_include_directories(${MODULE} PUBLIC ${incdirs})
 
 # Additional compilation flags
-set_target_properties(${MODULE}-object PROPERTIES COMPILE_FLAGS "-O -g")
+set_target_properties(${MODULE}-object PROPERTIES COMPILE_FLAGS "")
 
 # System dependent: Modify the way the library is build
 if(${CMAKE_SYSTEM} MATCHES Darwin)