Skip to content
Snippets Groups Projects
Commit 15179b24 authored by Tom Fischer's avatar Tom Fischer
Browse files

Restricted linking to the needed boost lib only.

parent 9fee5407
No related branches found
No related tags found
No related merge requests found
......@@ -11,4 +11,7 @@ INCLUDE_DIRECTORIES(
.
)
TARGET_LINK_LIBRARIES( BaseLib ${Boost_LIBRARIES} )
TARGET_LINK_LIBRARIES( BaseLib
boost_system
boost_filesystem
)
......@@ -27,7 +27,8 @@ TARGET_LINK_LIBRARIES ( MeshRead
logog
zlib
${ADDITIONAL_LIBS}
${Boost_LIBRARIES}
boost_system
boost_filesystem
)
# Create CollapseMeshNodes executable
......@@ -44,7 +45,8 @@ TARGET_LINK_LIBRARIES ( CollapseMeshNodes
BaseLib
GeoLib
logog
${Boost_LIBRARIES}
boost_system
boost_filesystem
)
# Create MeshSearchTest executable
......@@ -62,5 +64,6 @@ TARGET_LINK_LIBRARIES ( MeshSearchTest
GeoLib
logog
${ADDITIONAL_LIBS}
${Boost_LIBRARIES}
boost_system
boost_filesystem
)
......@@ -41,7 +41,8 @@ TARGET_LINK_LIBRARIES(testrunner
MeshLib
OgsLib
logog
${Boost_LIBRARIES}
boost_system
boost_filesystem
${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