swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: 2ba2e8354a1aed67e2d594a53f7b177cec675bac authored by Lars Bilke on 29 September 2021, 12:58:35 UTC
[ctest] Changed log file extension from .log to .txt.
Tip revision: 2ba2e83
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