swh:1:snp:6088ab52ef49920e01e3f334cdf4d5d6c8a822b9
Raw File
Tip revision: 16bbcab257bd8a5fd4de0662138a26c275cb5fcb authored by wenqing on 20 April 2021, 07:16:50 UTC
Merge branch 'fixTHM1' into 'master'
Tip revision: 16bbcab
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