aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Northrop <cody@lunarg.com>2015-07-08 16:22:51 -0600
committerCody Northrop <cody@lunarg.com>2015-07-08 16:22:51 -0600
commit290095a6cd2efc6e719e77baeb57af96b8a94218 (patch)
tree91d6691a505fdd08a1b3ff1d6c869f1ac4d08a42
parentf86fb15498be67c058d73cc191f6a6053aec71e1 (diff)
downloadusermoji-290095a6cd2efc6e719e77baeb57af96b8a94218.tar.xz
layers: Fix CMake custom target on Windows
-rw-r--r--layers/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/layers/CMakeLists.txt b/layers/CMakeLists.txt
index f26af409..71be28c7 100644
--- a/layers/CMakeLists.txt
+++ b/layers/CMakeLists.txt
@@ -43,7 +43,7 @@ else()
if (NOT (CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_CURRENT_BINARY_DIR))
foreach (config_file ${LAYER_JSON_FILES})
FILE(TO_NATIVE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/${config_file}.json ${config_file}-JSON)
- add_custom_target(binary-dir-symlinks ALL
+ add_custom_target(${config_file}-json ALL
COMMAND copy ${config_file}-JSON ${config_file}.json
VERBATIM
)