mirror of
https://github.com/FirestormViewer/phoenix-firestorm.git
synced 2026-08-14 08:53:53 +00:00
15 lines
269 B
CMake
15 lines
269 B
CMake
# -*- cmake -*-
|
|
include(Prebuilt)
|
|
|
|
if (LINUX AND NOT SYSTEMLIBS )
|
|
set(USE_JEMALLOC ON)
|
|
endif ()
|
|
|
|
if( USE_JEMALLOC )
|
|
if (USESYSTEMLIBS)
|
|
message( WARNING "Not implemented" )
|
|
else (USESYSTEMLIBS)
|
|
use_prebuilt_binary(jemalloc)
|
|
endif (USESYSTEMLIBS)
|
|
endif()
|