summaryrefslogtreecommitdiff
path: root/verify
diff options
context:
space:
mode:
authorunknown <Administrator@.(none)>2009-01-05 19:51:06 +0000
committerunknown <Administrator@.(none)>2009-01-05 19:51:06 +0000
commit53bca8ab52992dc20a0a028d82be5c43a2fab618 (patch)
treeae0ba99e44f90b0972eb695df9fde618cbd9cf37 /verify
parent3e9d8ec3cbc751b2b85bacb78814f1c37a0a203d (diff)
downloadyajl-53bca8ab52992dc20a0a028d82be5c43a2fab618.tar.gz
comment out INSTALL cmake directives on win32
Diffstat (limited to 'verify')
-rw-r--r--verify/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/verify/CMakeLists.txt b/verify/CMakeLists.txt
index 4013663..17efd83 100644
--- a/verify/CMakeLists.txt
+++ b/verify/CMakeLists.txt
@@ -50,4 +50,6 @@ GET_TARGET_PROPERTY(binPath json_verify LOCATION)
ADD_CUSTOM_COMMAND(TARGET json_verify POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${binPath} ${binDir})
-INSTALL(TARGETS json_verify RUNTIME DESTINATION bin)
+IF (NOT WIN32)
+ INSTALL(TARGETS json_verify RUNTIME DESTINATION bin)
+ENDIF ()