aboutsummaryrefslogtreecommitdiff
path: root/PreLoad.cmake
diff options
context:
space:
mode:
authorclick <none@none>2010-08-10 22:40:34 +0200
committerclick <none@none>2010-08-10 22:40:34 +0200
commit29e152f42b8256984362b9ba29566e2c2b1da7fc (patch)
tree57dbcb902d209e426db5f18e6a09e6c5dc39501f /PreLoad.cmake
parentfc45c6db07072016fe7d7b63ec3d789516d67502 (diff)
Buildsystem/Windows: Use CMAKE_INSTALL_PREFIX as result-dir for output (Thanks to Paradox)
(Suggested change for genrevisions default path retained to avoid breaking earlier builds, and it's not really a "server binary") Fixes issue 3366 --HG-- branch : trunk
Diffstat (limited to 'PreLoad.cmake')
-rw-r--r--PreLoad.cmake6
1 files changed, 6 insertions, 0 deletions
diff --git a/PreLoad.cmake b/PreLoad.cmake
new file mode 100644
index 00000000000..bd6f0396584
--- /dev/null
+++ b/PreLoad.cmake
@@ -0,0 +1,6 @@
+IF(WIN32)
+ IF(NOT CYGWIN)
+ SET(CMAKE_INSTALL_PREFIX
+ "" CACHE PATH "Default install path")
+ ENDIF(NOT CYGWIN)
+ENDIF(WIN32)