swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: 630512429f6c51c3604a222571ef617057c65c17 authored by Thomas Fischer on 18 June 2021, 09:15:39 UTC
[GL/Grid] Precompute vector size to avoid reallocations.
Tip revision: 6305124
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