aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-09-03 12:57:02 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-09-03 12:57:02 +0100
commitdeb248040c514c98921fec1c36add0e352948d3a (patch)
treecb1498de9a82a6b5ed79aeb87427daf73e557db8 /lib
parent5328e90aca93c2d4dc715b43c8460a46a7bb5d78 (diff)
downloadYAGE-deb248040c514c98921fec1c36add0e352948d3a.tar.gz
YAGE-deb248040c514c98921fec1c36add0e352948d3a.zip
Adding cmake and making class depracated
Diffstat (limited to 'lib')
-rw-r--r--lib/CMakeLists.txt21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt
new file mode 100644
index 00000000..1a413c1e
--- /dev/null
+++ b/lib/CMakeLists.txt
@@ -0,0 +1,21 @@
+# ----------------------------------------------------------------------------
+# CMakeLists.txt
+#
+# Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+# See file LICENSE for more details
+# ----------------------------------------------------------------------------
+
+# Initializing google test
+# prevents overriding the parent project's compiler/linter settings on windows
+set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
+
+# Add googletest directly to our build. This defines
+# the gtest and gtest_main targets.
+add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/googletest)
+
+# The gtest/gtest_main targets carry header search path
+# dependencies automatically when using CMake 2.8.11 or
+# later. Otherwise we have to add them here ourselves.
+if (CMAKE_VERSION VERSION_LESS 2.8.11)
+ include_directories("${gtest_SOURCE_DIR}/include")
+endif()