aboutsummaryrefslogtreecommitdiff
path: root/tools/depends
diff options
context:
space:
mode:
authorfuzzard <fuzzard@users.noreply.github.com>2020-06-10 15:12:34 +1000
committerGitHub <noreply@github.com>2020-06-10 15:12:34 +1000
commit4e95b19d73196ea5e6abc5ad00677dd40490835d (patch)
treeb568a89e0c1a0f4f5a2e94f425ed576e4644dd47 /tools/depends
parente9f5649152d9720eea2b91e7d71ad8f26f9b7cd5 (diff)
parent2d1fb9f8354005d59aa3d54c1f6070dfeb79fbf5 (diff)
Merge pull request #17880 from fuzzard/cmake/JsonSchemaBuilder
[cmake] JsonSchemaBuilder warnings and install fix
Diffstat (limited to 'tools/depends')
-rw-r--r--tools/depends/native/JsonSchemaBuilder/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/depends/native/JsonSchemaBuilder/CMakeLists.txt b/tools/depends/native/JsonSchemaBuilder/CMakeLists.txt
index 783b8a3c58..54d2259c00 100644
--- a/tools/depends/native/JsonSchemaBuilder/CMakeLists.txt
+++ b/tools/depends/native/JsonSchemaBuilder/CMakeLists.txt
@@ -1,5 +1,9 @@
+project(JsonSchemaBuilder)
+
set(SOURCES src/JsonSchemaBuilder.cpp)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
add_executable(JsonSchemaBuilder ${SOURCES})
+
+install(TARGETS JsonSchemaBuilder DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)