mirror of
https://github.com/holub/mame
synced 2025-05-28 08:33:05 +03:00
12 lines
306 B
CMake
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)
|