From 780ed1b01c77ac142e1da5851ff7deb832413b11 Mon Sep 17 00:00:00 2001 From: click Date: Wed, 11 Aug 2010 20:55:14 +0200 Subject: Buildsystem: Clean up build-process on all platforms - Windows: Use CMAKE_INSTALL_PREFIX as a 'final install' directory (thanks to paradox for the preload-handling) (New target INSTALL, -not- included as part of ALL_BUILD (must be specifically run for installation to start) - All: Build libmpq library (used for tools) - All: Build extractiontools with hardlinked mpq-library (no need to install it anymore) - All: Move jemalloc from being harddefined to using a CMake string (fixes issue 3378) (thanks to tru.bazoozoo for the idea, alternative added) --HG-- branch : trunk --- PreLoad.cmake | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 PreLoad.cmake (limited to 'PreLoad.cmake') 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) -- cgit v1.2.3