-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
6 lines (5 loc) · 1.35 KB
/
CMakeLists.txt
1
2
3
4
5
6
cmake_minimum_required(VERSION 3.16)
project(SimpleInterpreter C)
set(CMAKE_C_STANDARD 99)
set(CMAKE_C_FLAGS "-g -O0")
add_executable(SimpleInterpreter Sources/main.c Sources/AVLTree.c Headers/AVLTree.h Sources/Stack.c Headers/Stack.h Sources/StackC.c Headers/StackC.h Sources/IDE.c Headers/IDE.h Sources/String.c Headers/String.h Headers/ANSI_Colors.h Sources/StringFunctions.c Headers/StringFunctions.h Sources/LoadFile.c Headers/LoadFile.h "Sources/Compiler/InfixCalculator.c" "Headers/Compiler/InfixCalculator.h" Sources/IDETerminal.c Headers/IDETerminal.h "Sources/Compiler/Compiler.c" "Headers/Compiler/Compiler.h" "Sources/Compiler/FunctionsHandling.c" "Headers/Compiler/FunctionsHandling.h" Headers/main.h "Sources/Compiler/IfStatementsHandling.c" "Headers/Compiler/IfStatementsHandling.h" "Sources/Compiler/CommentsHandling.c" "Headers/Compiler/CommentsHandling.h" "Sources/Compiler/ExpressionsHandling.c" "Headers/Compiler/ExpressionsHandling.h" "Sources/Compiler/LabelStatementHandling.c" "Headers/Compiler/LabelStatementHandling.h" Sources/Compiler/WhileLoopsHandling.c Headers/Compiler/WhileLoopsHandling.h Sources/VariablesVector.c Headers/VariablesVector.h Sources/Heap.c Headers/Heap.h Sources/Compiler/ForLoopsHandling.c Headers/Compiler/ForLoopsHandling.h Sources/TerminalMemento.c Headers/TerminalMemento.h Sources/TerminalCareTaker.c Headers/TerminalCareTaker.h)