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