aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Fedchin <anightik@gmail.com>2017-10-22 13:27:08 +0300
committerAnton Fedchin <anightik@gmail.com>2017-11-02 09:56:34 +0300
commit6e3071e1b52047628521f5fbcb3e4188be35e0d5 (patch)
treef7852a072cf9d6802ae873ff741cd52326ab5094
parent7e7b5bb0629cccc9ee055b6d59c30f5b66c3abec (diff)
[win32] cmake: fix location for JsonSchemaBuilder.exe
-rw-r--r--cmake/modules/FindJsonSchemaBuilder.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/modules/FindJsonSchemaBuilder.cmake b/cmake/modules/FindJsonSchemaBuilder.cmake
index 9a31dd5f12..14aa2f5113 100644
--- a/cmake/modules/FindJsonSchemaBuilder.cmake
+++ b/cmake/modules/FindJsonSchemaBuilder.cmake
@@ -12,7 +12,7 @@ if(NOT TARGET JsonSchemaBuilder::JsonSchemaBuilder)
add_executable(JsonSchemaBuilder::JsonSchemaBuilder IMPORTED GLOBAL)
if(CORE_SYSTEM_NAME STREQUAL windows OR CORE_SYSTEM_NAME STREQUAL windowsstore)
set_target_properties(JsonSchemaBuilder::JsonSchemaBuilder PROPERTIES
- IMPORTED_LOCATION "${CMAKE_SOURCE_DIR}/project/BuildDependencies/bin/json-rpc/JsonSchemaBuilder")
+ IMPORTED_LOCATION "${DEPENDENCIES_DIR}/bin/json-rpc/JsonSchemaBuilder")
else()
set_target_properties(JsonSchemaBuilder::JsonSchemaBuilder PROPERTIES
IMPORTED_LOCATION "${NATIVEPREFIX}/bin/JsonSchemaBuilder")