Revision db2a382e8aa9f29feae3a3ed092ae713ef64bd21 authored by Wenqing Wang on 19 March 2021, 10:59:24 UTC, committed by Wenqing Wang on 19 March 2021, 10:59:24 UTC
1 parent 96e69c9
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