From f029fcc2fbc7cd979925f198f7e6ca8170d45000 Mon Sep 17 00:00:00 2001 From: Nemanja Trifunovic Date: Sat, 17 Oct 2015 20:41:24 -0400 Subject: [PATCH] CMake for negative test --- CMakeLists.txt | 3 ++- test_drivers/CMakeLists.txt | 1 + test_drivers/negative/CMakeLists.txt | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 test_drivers/CMakeLists.txt create mode 100644 test_drivers/negative/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 4a23de7a6..49c9fade2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,4 +2,5 @@ cmake_minimum_required (VERSION 2.6) project (utf8cpp) include_directories ("${PROJECT_SOURCE_DIR}/source") -add_subdirectory (samples) +add_subdirectory (samples) +add_subdirectory (test_drivers) diff --git a/test_drivers/CMakeLists.txt b/test_drivers/CMakeLists.txt new file mode 100644 index 000000000..78822a140 --- /dev/null +++ b/test_drivers/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory (negative) diff --git a/test_drivers/negative/CMakeLists.txt b/test_drivers/negative/CMakeLists.txt new file mode 100644 index 000000000..f0d5e1565 --- /dev/null +++ b/test_drivers/negative/CMakeLists.txt @@ -0,0 +1 @@ +add_executable (negative negative.cpp) \ No newline at end of file -- 2.40.0