summaryrefslogtreecommitdiff
path: root/reformatter
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 /reformatter
parent3e9d8ec3cbc751b2b85bacb78814f1c37a0a203d (diff)
downloadyajl-53bca8ab52992dc20a0a028d82be5c43a2fab618.tar.gz
comment out INSTALL cmake directives on win32
Diffstat (limited to 'reformatter')
-rw-r--r--reformatter/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/reformatter/CMakeLists.txt b/reformatter/CMakeLists.txt
index 070370c..5ac7035 100644
--- a/reformatter/CMakeLists.txt
+++ b/reformatter/CMakeLists.txt
@@ -50,4 +50,6 @@ GET_TARGET_PROPERTY(binPath json_reformat LOCATION)
ADD_CUSTOM_COMMAND(TARGET json_reformat POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${binPath} ${binDir})
-INSTALL(TARGETS json_reformat RUNTIME DESTINATION bin)
+IF (NOT WIN32)
+ INSTALL(TARGETS json_reformat RUNTIME DESTINATION bin)
+ENDIF ()