SyntaxParser/CMakeLists.txt

12 lines
246 B
CMake
Raw Normal View History

2021-04-24 11:53:36 +00:00
cmake_minimum_required(VERSION 3.17)
project(syntaxParser)
2021-04-29 12:14:20 +00:00
set(CMAKE_CXX_STANDARD 14)
2021-04-24 11:53:36 +00:00
2021-04-30 12:55:56 +00:00
set(CMAKE_CXX_FLAGS_RELEASE "/Ox")
include_directories(./include)
aux_source_directory(src SRC_FILES)
add_executable(LR1Compiler Compiler.cpp ${SRC_FILES})