From 19ca28d8bd8c45456b0b1a69e8f5baadf7a70c61 Mon Sep 17 00:00:00 2001 From: Markus Makela Date: Thu, 11 Sep 2014 18:58:03 +0300 Subject: [PATCH] added preliminary testing framework --- CMakeLists.txt | 1 + server/CMakeLists.txt | 3 ++- server/test/CMakeLists.txt | 0 3 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 server/test/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 3a884cc5a..3044a355c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,5 @@ cmake_minimum_required(VERSION 2.6) +enable_testing() project(MaxScale) find_path(MYSQL_DIR mysql.h PATH_SUFFIXES mysql mariadb) diff --git a/server/CMakeLists.txt b/server/CMakeLists.txt index 83404086e..883541d53 100644 --- a/server/CMakeLists.txt +++ b/server/CMakeLists.txt @@ -1,3 +1,4 @@ add_subdirectory(core) add_subdirectory(modules) -add_subdirectory(inih) \ No newline at end of file +add_subdirectory(inih) +add_subdirectory(test) \ No newline at end of file diff --git a/server/test/CMakeLists.txt b/server/test/CMakeLists.txt new file mode 100644 index 000000000..e69de29bb