-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
62 lines (60 loc) · 1.88 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
cmake_minimum_required(VERSION 3.26)
project(tolelom)
set(CMAKE_CXX_STANDARD 20)
add_executable(tolelom main.cpp
repl/repl.cpp
repl/repl.h
lexer/lexer.cpp
lexer/lexer.h
token/token.h
token/tokenType.h
utf8Converter/utf8Converter.cpp
utf8Converter/utf8Converter.h
parser/parser.cpp
parser/parser.h
ast/node.h
ast/expressions/expression.h
ast/statements/statement.h
ast/statements/assignStatement.h
ast/expressions/identifierExpression.h
ast/expressions/prefixExpression.h
ast/expressions/infixExpression.h
ast/program.h
ast/expressions/integerExpression.h
exception/exception.h
evaluator/evaluator.cpp
evaluator/evaluator.h
object/object.h
ast/literals/integerLiteral.h
ast/literals/literal.h
ast/literals/booleanLiteral.h
ast/statements/expressionStatement.h
ast/statements/letStatement.h
ast/statements/returnStatement.h
ast/statements/ifStatement.h
ast/statements/blockStatement.h
object/environment.h
ast/expressions/functionExpression.h
ast/statements/functionStatement.h
code/code.h
compiler/compiler.h
compiler/compiler.cpp
endian/endian.h
endian/endian.cpp
code/code.cpp
vm/virtualMachine.cpp
vm/virtualMachine.h
compiler/symbolTable.cpp
compiler/symbolTable.h
ast/literals/stringLiteral.h
object/objectType.h
ast/literals/arrayLiteral.h
ast/expressions/indexExpression.h
ast/statements/loopStatement.h
ast/statements/classStatement.h
ast/expressions/classExpression.h
ast/statements/classInitStatement.h
builtins/builtins.h
builtins/builtins.cpp
ast/literals/floatLiteral.h
)