mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-29 08:34:39 +08:00
wip
This commit is contained in:
Vendored
+2
-1
@@ -1,4 +1,5 @@
|
||||
benchmark/build
|
||||
benchmark/output
|
||||
benchmark/charts.html
|
||||
pdf2
|
||||
build
|
||||
tests
|
||||
|
||||
Vendored
+18
@@ -0,0 +1,18 @@
|
||||
cmake_minimum_required(VERSION 3.8)
|
||||
|
||||
project(phmap VERSION 0.9 LANGUAGES CXX)
|
||||
|
||||
include(GNUInstallDirs)
|
||||
|
||||
add_library(parallel_hashmap INTERFACE)
|
||||
|
||||
target_sources(parallel_hashmap INTERFACE
|
||||
phmap.h phmap_base.h phmap_bits.h phmap_utils.h phmap_config.h)
|
||||
|
||||
target_include_directories(
|
||||
parallel_hashmap INTERFACE
|
||||
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/parallel_hashmap>
|
||||
$<INSTALL_INTERFACE:include>
|
||||
)
|
||||
|
||||
add_executable(basic examples/basic.cc)
|
||||
Reference in New Issue
Block a user