Skip to content
Snippets Groups Projects
Commit a526e10f authored by Lars Bilke's avatar Lars Bilke
Browse files

Added missing dependencies for local boost.

parent 7f4b49d9
No related branches found
No related tags found
No related merge requests found
......@@ -64,10 +64,15 @@ if(QT4_FOUND)
endif()
ADD_VTK_DEPENDENCY(FileIO)
if(TARGET Eigen)
add_dependencies(FileIO Eigen)
endif()
if(TARGET Boost)
add_dependencies(FileIO Boost)
endif()
file(GLOB XSD_FILES . *.xsd)
if(APPLE AND OGS_BUILD_GUI)
install(FILES ${XSD_FILES} DESTINATION ${CMAKE_BINARY_DIR}/_CPack_Packages/Darwin/DragNDrop/${CPACK_PACKAGE_FILE_NAME}/ALL_IN_ONE/DataExplorer.app/Contents/MacOS COMPONENT ogs_gui)
......
......@@ -12,3 +12,7 @@ add_library(InSituLib
target_link_libraries(InSituLib INTERFACE MeshLib ${VTK_LIBRARIES})
ADD_VTK_DEPENDENCY(InSituLib)
if(TARGET Boost)
add_dependencies(InSituLib Boost)
endif()
......@@ -31,3 +31,6 @@ if(TARGET Eigen)
add_dependencies(MeshLib Eigen)
endif()
if(TARGET Boost)
add_dependencies(MeshLib Boost)
endif()
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