aboutsummaryrefslogtreecommitdiff
path: root/3rdparty/robin_hood/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/robin_hood/CMakeLists.txt')
-rw-r--r--3rdparty/robin_hood/CMakeLists.txt10
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
+)