mirror of
https://github.com/yhirose/cpp-peglib.git
synced 2024-12-22 20:05:31 +00:00
14 lines
336 B
CMake
14 lines
336 B
CMake
cmake_minimum_required(VERSION 3.1)
|
|
project(test)
|
|
|
|
enable_language(CXX)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
|
|
include_directories(..)
|
|
add_executable(test-main test-main.cc test1.cc test2.cc test3.cc)
|
|
target_link_libraries(test-main ${add_link_deps})
|
|
|
|
add_test(TestMain test-main)
|