mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
- 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
7 lines
139 B
CMake
7 lines
139 B
CMake
IF(WIN32)
|
|
IF(NOT CYGWIN)
|
|
SET(CMAKE_INSTALL_PREFIX
|
|
"" CACHE PATH "Default install path")
|
|
ENDIF(NOT CYGWIN)
|
|
ENDIF(WIN32)
|