Revision 50ceb2ed745e040f6780cad26bc78108a6fb100d authored by Norbert Grunwald on 07 April 2021, 13:55:34 UTC, committed by Norbert Grunwald on 07 April 2021, 13:55:34 UTC
1 parent cf1aca7
Raw File
CMakeLists.txt
# Source files
get_source_files(SOURCES)

# Library
ogs_add_library(InSituLib ${SOURCES})
if(BUILD_SHARED_LIBS)
    install(TARGETS InSituLib LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
endif()

target_link_libraries(
    InSituLib
    PUBLIC BaseLib
    INTERFACE VTK::PythonUsed
    PRIVATE MeshLib ParaView::PythonCatalyst VTK::CommonDataModel
)
back to top