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

Replaced hardcoded boost libs with CMake variables.

parent c18a4895
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,6 @@ INCLUDE_DIRECTORIES( ...@@ -12,6 +12,6 @@ INCLUDE_DIRECTORIES(
) )
TARGET_LINK_LIBRARIES( BaseLib TARGET_LINK_LIBRARIES( BaseLib
boost_system ${Boost_FILESYSTEM_LIBRARY}
boost_filesystem ${Boost_SYSTEM_LIBRARY}
) )
...@@ -27,8 +27,8 @@ TARGET_LINK_LIBRARIES ( MeshRead ...@@ -27,8 +27,8 @@ TARGET_LINK_LIBRARIES ( MeshRead
logog logog
zlib zlib
${ADDITIONAL_LIBS} ${ADDITIONAL_LIBS}
boost_system ${Boost_FILESYSTEM_LIBRARY}
boost_filesystem ${Boost_SYSTEM_LIBRARY}
) )
# Create CollapseMeshNodes executable # Create CollapseMeshNodes executable
...@@ -45,8 +45,8 @@ TARGET_LINK_LIBRARIES ( CollapseMeshNodes ...@@ -45,8 +45,8 @@ TARGET_LINK_LIBRARIES ( CollapseMeshNodes
BaseLib BaseLib
GeoLib GeoLib
logog logog
boost_system ${Boost_FILESYSTEM_LIBRARY}
boost_filesystem ${Boost_SYSTEM_LIBRARY}
) )
# Create MeshSearchTest executable # Create MeshSearchTest executable
...@@ -64,6 +64,6 @@ TARGET_LINK_LIBRARIES ( MeshSearchTest ...@@ -64,6 +64,6 @@ TARGET_LINK_LIBRARIES ( MeshSearchTest
GeoLib GeoLib
logog logog
${ADDITIONAL_LIBS} ${ADDITIONAL_LIBS}
boost_system ${Boost_FILESYSTEM_LIBRARY}
boost_filesystem ${Boost_SYSTEM_LIBRARY}
) )
...@@ -41,8 +41,8 @@ TARGET_LINK_LIBRARIES(testrunner ...@@ -41,8 +41,8 @@ TARGET_LINK_LIBRARIES(testrunner
MeshLib MeshLib
OgsLib OgsLib
logog logog
boost_system ${Boost_FILESYSTEM_LIBRARY}
boost_filesystem ${Boost_SYSTEM_LIBRARY}
${CMAKE_THREAD_LIBS_INIT} ${CMAKE_THREAD_LIBS_INIT}
) )
......
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