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

Removed obsolete linking to winmm.

parent 7487bbc5
No related branches found
No related tags found
No related merge requests found
## pthread ##
if(WIN32)
set(ADDITIONAL_LIBS Winmm.lib)
endif()
if(CMAKE_USE_PTHREADS_INIT) if(CMAKE_USE_PTHREADS_INIT)
set(HAVE_PTHREADS TRUE) set(HAVE_PTHREADS TRUE)
endif() endif()
...@@ -36,7 +31,6 @@ target_link_libraries(MatMult ...@@ -36,7 +31,6 @@ target_link_libraries(MatMult
logog logog
BaseLib BaseLib
MathLib MathLib
${ADDITIONAL_LIBS}
) )
add_executable(MatTestRemoveRowsCols add_executable(MatTestRemoveRowsCols
...@@ -48,7 +42,6 @@ set_target_properties(MatTestRemoveRowsCols PROPERTIES FOLDER SimpleTests) ...@@ -48,7 +42,6 @@ set_target_properties(MatTestRemoveRowsCols PROPERTIES FOLDER SimpleTests)
target_link_libraries(MatTestRemoveRowsCols target_link_libraries(MatTestRemoveRowsCols
BaseLib BaseLib
MathLib MathLib
${ADDITIONAL_LIBS}
) )
if(METIS_FOUND) if(METIS_FOUND)
...@@ -64,7 +57,6 @@ if(METIS_FOUND) ...@@ -64,7 +57,6 @@ if(METIS_FOUND)
MathLib MathLib
logog logog
${METIS_LIBRARIES} ${METIS_LIBRARIES}
${ADDITIONAL_LIBS}
) )
if(OPENMP_FOUND) if(OPENMP_FOUND)
...@@ -80,7 +72,6 @@ if(METIS_FOUND) ...@@ -80,7 +72,6 @@ if(METIS_FOUND)
MathLib MathLib
logog logog
${METIS_LIBRARIES} ${METIS_LIBRARIES}
${ADDITIONAL_LIBS}
) )
endif() endif()
endif() endif()
......
if(WIN32)
set(ADDITIONAL_LIBS Winmm.lib)
endif()
# Create the executable # Create the executable
add_executable(MeshRead add_executable(MeshRead
MeshRead.cpp MeshRead.cpp
...@@ -16,7 +12,6 @@ target_link_libraries(MeshRead ...@@ -16,7 +12,6 @@ target_link_libraries(MeshRead
BaseLib BaseLib
GeoLib GeoLib
logog logog
${ADDITIONAL_LIBS}
${BOOST_LIBRARIES} ${BOOST_LIBRARIES}
) )
...@@ -34,6 +29,5 @@ target_link_libraries(MeshSearchTest ...@@ -34,6 +29,5 @@ target_link_libraries(MeshSearchTest
BaseLib BaseLib
GeoLib GeoLib
logog logog
${ADDITIONAL_LIBS}
${BOOST_LIBRARIES} ${BOOST_LIBRARIES}
) )
if(WIN32)
set(ADDITIONAL_LIBS Winmm.lib)
endif()
add_executable(ConjugateGradientUnpreconditioned add_executable(ConjugateGradientUnpreconditioned
ConjugateGradientUnpreconditioned.cpp ConjugateGradientUnpreconditioned.cpp
${SOURCES} ${SOURCES}
......
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