LR1Generator/CMakeLists.txt

8 lines
155 B
CMake
Raw Normal View History

2021-04-24 11:53:36 +00:00
cmake_minimum_required(VERSION 3.17)
project(syntaxParser)
find_package(Boost REQUIRED)
set(CMAKE_CXX_STANDARD 14)
add_executable(syntaxParser main.cpp)