eedb/share/include/tao/json/external/akrzemi1/CMakeLists.txt
2017-02-26 09:32:45 +01:00

12 lines
306 B
CMake

project(optional)
cmake_minimum_required(VERSION 2.8)
enable_testing()
set(CMAKE_CXX_FLAGS "-std=c++11 -Wall -Wextra")
add_executable(test_optional test_optional.cpp)
add_executable(test_type_traits test_type_traits.cpp)
add_test(test_optional test_optional)
add_test(test_type_traits test_type_traits)