swh:1:snp:6088ab52ef49920e01e3f334cdf4d5d6c8a822b9
Raw File
Tip revision: 6999a41c8eafd67a318a63b0ba60264f2b93e5c9 authored by Norbert Grunwald on 01 October 2021, 09:52:47 UTC
Merge branch 'TH2M_McWorther_H2' into 'master'
Tip revision: 6999a41
CMakeLists.txt
if(NOT OGS_BUILD_GUI)
    return()
endif()

set(TOOLS MoveGeometry TriangulatePolyline)
foreach(tool ${TOOLS})
    ogs_add_executable(${tool} ${tool}.cpp)
    target_link_libraries(
        ${tool} GeoLib GitInfoLib ApplicationsFileIO tclap Qt5::Core
    )
endforeach()
install(TARGETS ${TOOLS} RUNTIME DESTINATION bin)
back to top