Revision 6764a8b3cc58aad2f86c46413ba426a12ead8b2f authored by Wenqing Wang on 21 July 2021, 12:08:26 UTC, committed by Wenqing Wang on 21 July 2021, 15:13:09 UTC
1 parent 7c48749
Raw File
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