Revert odd strings
This commit is contained in:
parent
101ba7ddef
commit
d4535cfa4b
1 changed files with 6 additions and 4 deletions
10
external/jemalloc/CMakeLists.txt
vendored
10
external/jemalloc/CMakeLists.txt
vendored
|
|
@ -18,7 +18,6 @@ endif()
|
||||||
|
|
||||||
if (NOT JEMALLOC_FOUND)
|
if (NOT JEMALLOC_FOUND)
|
||||||
add_library(external_jemalloc_bundled STATIC IMPORTED GLOBAL)
|
add_library(external_jemalloc_bundled STATIC IMPORTED GLOBAL)
|
||||||
set(jemalloc_loc ${third_party_loc}/jemalloc)
|
|
||||||
|
|
||||||
include(ExternalProject)
|
include(ExternalProject)
|
||||||
ExternalProject_Add(jemalloc
|
ExternalProject_Add(jemalloc
|
||||||
|
|
@ -29,15 +28,18 @@ if (NOT JEMALLOC_FOUND)
|
||||||
BUILD_BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/jemalloc-prefix/src/jemalloc/lib/libjemalloc.a
|
BUILD_BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/jemalloc-prefix/src/jemalloc/lib/libjemalloc.a
|
||||||
)
|
)
|
||||||
|
|
||||||
file(MAKE_DIRECTORY "${jemalloc_loc}/include")
|
ExternalProject_Get_property(jemalloc SOURCE_DIR)
|
||||||
|
ExternalProject_Get_property(jemalloc BINARY_DIR)
|
||||||
|
|
||||||
|
file(MAKE_DIRECTORY "${SOURCE_DIR}/include")
|
||||||
|
|
||||||
set_target_properties(external_jemalloc_bundled PROPERTIES
|
set_target_properties(external_jemalloc_bundled PROPERTIES
|
||||||
IMPORTED_LOCATION "${jemalloc_loc}/lib/libjemalloc.a"
|
IMPORTED_LOCATION "${BINARY_DIR}/lib/libjemalloc.a"
|
||||||
)
|
)
|
||||||
|
|
||||||
target_include_directories(external_jemalloc_bundled SYSTEM
|
target_include_directories(external_jemalloc_bundled SYSTEM
|
||||||
INTERFACE
|
INTERFACE
|
||||||
${jemalloc_loc}/include
|
${SOURCE_DIR}/include
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(external_jemalloc_bundled
|
target_link_libraries(external_jemalloc_bundled
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue