Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- cmake_minimum_required(VERSION 3.20.1 FATAL_ERROR)
- project(Compiler VERSION 1.0)
- set(SOURCE_FILES
- src/Main.cpp
- src/OS.cpp
- src/Tokenizer.cpp
- src/Token.cpp
- src/Parser.cpp
- src/Diagnostics.cpp
- src/Structures/Program.cpp
- src/Structures/GlobalFunction.cpp
- src/Structures/Parameter.cpp
- src/Structures/GlobalFunctionScope.cpp
- )
- add_executable(main ${SOURCE_FILES})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement