Advertisement
Frumkin

Untitled

Aug 16th, 2021
1,496
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 0.41 KB | None | 0 0
  1. cmake_minimum_required(VERSION 3.20.1 FATAL_ERROR)
  2.  
  3. project(Compiler VERSION 1.0)
  4.  
  5. set(SOURCE_FILES
  6.     src/Main.cpp
  7.     src/OS.cpp
  8.     src/Tokenizer.cpp
  9.     src/Token.cpp
  10.     src/Parser.cpp
  11.  
  12.     src/Diagnostics.cpp
  13.  
  14.     src/Structures/Program.cpp
  15.     src/Structures/GlobalFunction.cpp
  16.     src/Structures/Parameter.cpp
  17.     src/Structures/GlobalFunctionScope.cpp
  18. )
  19.  
  20. add_executable(main ${SOURCE_FILES})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement