mirror of
https://github.com/yhirose/cpp-peglib.git
synced 2024-11-10 05:49:57 +00:00
10 lines
190 B
CMake
10 lines
190 B
CMake
cmake_minimum_required(VERSION 3.1)
|
|
project(peglint)
|
|
|
|
include_directories(..)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
add_executable(peglint peglint.cc)
|
|
target_link_libraries(peglint ${add_link_deps})
|