SyntaxParser/CMakeLists.txt
2021-05-01 01:30:50 +08:00

12 lines
246 B
CMake

cmake_minimum_required(VERSION 3.17)
project(syntaxParser)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_FLAGS_RELEASE "/Ox")
include_directories(./include)
aux_source_directory(src SRC_FILES)
add_executable(LR1Compiler Compiler.cpp ${SRC_FILES})