diff options
author | hnOsmium0001 <[email protected]> | 2022-04-16 21:17:14 -0700 |
---|---|---|
committer | hnOsmium0001 <[email protected]> | 2022-04-16 21:17:14 -0700 |
commit | a7b2598a90708975220a7f457e5755800e5434b2 (patch) | |
tree | 78048392dabbba8d1bab1f3ff522415bf0b91fd5 /3rdparty/robin_hood/CMakeLists.txt | |
parent | 509201784d6525fc26345e55a56ab81e4a7616b3 (diff) |
Vendor robin-hood-hashing libraryrobinhood-vendor
Diffstat (limited to '3rdparty/robin_hood/CMakeLists.txt')
-rw-r--r-- | 3rdparty/robin_hood/CMakeLists.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3rdparty/robin_hood/CMakeLists.txt b/3rdparty/robin_hood/CMakeLists.txt new file mode 100644 index 0000000..d2d8c0e --- /dev/null +++ b/3rdparty/robin_hood/CMakeLists.txt @@ -0,0 +1,10 @@ +add_library(robin_hood + include/robin_hood.h +) +target_include_directories(robin_hood PUBLIC ${CMAKE_CURRENT_LIST_DIR}/include) + +set_target_properties(robin_hood +PROPERTIES + LINKER_LANGUAGE CXX + UNITY_BUILD OFF +) |