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

try to fix linker problems

parent e0e63976
No related branches found
No related tags found
No related merge requests found
......@@ -12,22 +12,26 @@ INCLUDE_DIRECTORIES(
${CMAKE_SOURCE_DIR}/MeshLib/
)
# Create the executable
ADD_EXECUTABLE( MeshRead
MeshRead.cpp
${SOURCES}
${HEADERS}
)
IF(VTK_FOUND)
INCLUDE( ${VTK_USE_FILE} )
TARGET_LINK_LIBRARIES ( MeshRead
MeshLib
FileIO
MathLib
BaseLib
GeoLib
logog
${ADDITIONAL_LIBS}
)
# Create the executable
ADD_EXECUTABLE( MeshRead
MeshRead.cpp
${SOURCES}
${HEADERS}
)
TARGET_LINK_LIBRARIES ( MeshRead
MeshLib
FileIO
MathLib
BaseLib
GeoLib
logog
${ADDITIONAL_LIBS}
)
ENDIF()
# Create CollapseMeshNodes executable
ADD_EXECUTABLE( CollapseMeshNodes
......
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