mirror of
https://github.com/yhirose/cpp-peglib.git
synced 2024-12-22 20:05:31 +00:00
9 lines
232 B
CMake
9 lines
232 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
include_directories(..)
|
|
add_compile_options(${cxx11_options} ${warning_options})
|
|
|
|
add_executable(test-main test.cc)
|
|
target_link_libraries(test-main ${add_link_deps})
|
|
|
|
add_test(TestMain test-main)
|