cpp-peglib/CMakeLists.txt
hvellyr d0c6cd55ad Enabling testing in the CMakeList
... which allows to use "make test" and/or "ctest -V"
2016-06-01 16:27:23 +02:00

11 lines
223 B
CMake

cmake_minimum_required(VERSION 2.8)
add_definitions("-std=c++1y")
enable_testing()
add_subdirectory(lint)
add_subdirectory(test)
add_subdirectory(example)
add_subdirectory(language/pl0)
add_subdirectory(language/culebra)