Build tools in cmake workflow

This commit is contained in:
Vincent Stumpf 2023-06-14 04:57:28 +00:00
parent b6ce15af00
commit 1545d483c0
2 changed files with 3 additions and 1 deletions

View File

@ -46,4 +46,4 @@ jobs:
- name: Build
working-directory: ${{github.workspace}}/build
# Execute the build. You can specify a specific target with "--target <NAME>"
run: cmake --build .
run: cmake --build . --target server tools

View File

@ -37,3 +37,5 @@ if(WIN32)
"yaml.hpp"
)
endif()
add_custom_target(tools DEPENDS mapcache csv2yaml yaml2sql yamlupgrade map-server-generator)