[generator] Use tcmalloc for efficient multithreading processing
This commit is contained in:
parent
4a302bee84
commit
a88f11131f
2 changed files with 12 additions and 0 deletions
|
@ -16,6 +16,17 @@ if (NOT SKIP_TESTS)
|
|||
configure_gtest()
|
||||
endif()
|
||||
|
||||
|
||||
# TCMalloc Linking
|
||||
add_library(tcmalloc_config INTERFACE)
|
||||
|
||||
option(USE_TCMALLOC "Link TCMalloc memory allocator" ON)
|
||||
if (USE_TCMALLOC)
|
||||
find_package(tcmalloc)
|
||||
target_link_libraries(tcmalloc_config INTERFACE tcmalloc)
|
||||
endif()
|
||||
|
||||
|
||||
# Code Coverage Configuration
|
||||
add_library(coverage_config INTERFACE)
|
||||
|
||||
|
|
|
@ -9,4 +9,5 @@ geocore_link_libraries(
|
|||
geocoder
|
||||
${Boost_PROGRAM_OPTIONS_LIBRARY}
|
||||
${CMAKE_DL_LIBS}
|
||||
tcmalloc_config
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue