swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: e09b480f43563a2a279313e1d66f1b5eda669d1b authored by Lars Bilke on 15 September 2021, 06:30:22 UTC
[cmake] Fix tfel rpath. Fixes #3189.
Tip revision: e09b480
CMakeLists.txt
if(OGS_USE_MPI)
    return()
endif()

if(OGS_BUILD_PROCESS_LIE)
    ogs_add_executable(postLIE postLIE.cpp)
    target_link_libraries(postLIE GitInfoLib LIECommon tclap)
    install(TARGETS postLIE RUNTIME DESTINATION bin)
endif()

if(OGS_BUILD_GUI)
    ogs_add_executable(Raster2PointCloud Raster2PointCloud.cpp)
    target_link_libraries(
        Raster2PointCloud ApplicationsFileIO BaseLib GitInfoLib tclap
        VtkVisFilter
    )
    install(TARGETS Raster2PointCloud RUNTIME DESTINATION bin)
endif()
back to top