aboutsummaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorclick <none@none>2010-06-30 16:51:37 +0200
committerclick <none@none>2010-06-30 16:51:37 +0200
commitf8bb7afa9817411beda1f2492d18c61679e9a5f9 (patch)
treee540447cf30fee482256f26ec1a298c565034b18 /src/tools
parentfc1ed4b1099b05137b6c72a09b058b56936c2225 (diff)
And even more CMake-specific cleanups (mutes most of the "non-harmful" warnings - VS is just trying to be too friendly/noisy at times)
--HG-- branch : trunk
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/map_extractor/CMakeLists.txt4
-rw-r--r--src/tools/vmap3_assembler/CMakeLists.txt4
-rwxr-xr-xsrc/tools/vmap3_extractor/CMakeLists.txt4
3 files changed, 9 insertions, 3 deletions
diff --git a/src/tools/map_extractor/CMakeLists.txt b/src/tools/map_extractor/CMakeLists.txt
index a18ee7cd517..cb3778c7c6a 100644
--- a/src/tools/map_extractor/CMakeLists.txt
+++ b/src/tools/map_extractor/CMakeLists.txt
@@ -33,4 +33,6 @@ else()
)
endif()
-install(TARGETS mapextractor DESTINATION bin)
+if( UNIX )
+ install(TARGETS mapextractor DESTINATION bin)
+endif()
diff --git a/src/tools/vmap3_assembler/CMakeLists.txt b/src/tools/vmap3_assembler/CMakeLists.txt
index 0b8ece2dc37..2035d3f2055 100644
--- a/src/tools/vmap3_assembler/CMakeLists.txt
+++ b/src/tools/vmap3_assembler/CMakeLists.txt
@@ -37,4 +37,6 @@ else()
)
endif()
-install(TARGETS vmap3assembler DESTINATION bin)
+if( UNIX )
+ install(TARGETS vmap3assembler DESTINATION bin)
+if()
diff --git a/src/tools/vmap3_extractor/CMakeLists.txt b/src/tools/vmap3_extractor/CMakeLists.txt
index 9dfdd545df8..62604f7ad3d 100755
--- a/src/tools/vmap3_extractor/CMakeLists.txt
+++ b/src/tools/vmap3_extractor/CMakeLists.txt
@@ -36,4 +36,6 @@ else()
)
endif()
-install(TARGETS vmap3extractor DESTINATION bin)
+if( UNIX )
+ install(TARGETS vmap3extractor DESTINATION bin)
+endif()