From f32004323eae427cba2d25d01836367b291e522d Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Thu, 15 Jan 2015 19:09:55 +0100 Subject: Initial project structure --- CMakeLists.txt | 26 ++++++++++++++++++++++++++ test.cc | 7 +++++++ 2 files changed, 33 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 test.cc diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..ed284d4 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,26 @@ +cmake_minimum_required(VERSION 2.8) +project(TypeAsValue) + +set( + CMAKE_CXX_FLAGS + "-std=c++14 -W -Wall -Wextra -Winline -pedantic" +) + +include_directories( + src/ +) + +add_executable( + tests + test.cc +) + +target_link_libraries( + tests + gtest +) + +add_custom_command( + TARGET tests + POST_BUILD COMMAND ./tests +) diff --git a/test.cc b/test.cc new file mode 100644 index 0000000..f70f5ac --- /dev/null +++ b/test.cc @@ -0,0 +1,7 @@ +#include "gtest/gtest.h" + +int main(int argc, char **argv) { + testing::InitGoogleTest(&argc, argv); + + return RUN_ALL_TESTS(); +} -- cgit v1.2.3