Files
TrinityCore/PreLoad.cmake
click 780ed1b01c 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
2010-08-11 20:55:14 +02:00

7 lines
139 B
CMake

IF(WIN32)
IF(NOT CYGWIN)
SET(CMAKE_INSTALL_PREFIX
"" CACHE PATH "Default install path")
ENDIF(NOT CYGWIN)
ENDIF(WIN32)