diff --git a/CMakeLists.txt b/CMakeLists.txt index d6af661..0b62ba7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,8 @@ set(CMAKE_LEGACY_CYGWIN_WIN32 0) cmake_minimum_required(VERSION 2.8) +subdirs(tests) + include(GNUInstallDirs) project(cJSON C) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt new file mode 100644 index 0000000..a7cf61f --- /dev/null +++ b/tests/CMakeLists.txt @@ -0,0 +1 @@ +add_library(unity unity/src/unity.c)