-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
47 lines (42 loc) · 2.02 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
#..............................................................
# CMakeList.txt : CMake project for Compilers, S23.
#..............................................................
#
###################################################
# #
# ALGONQUIN @@@@@@@ COLLEGE #
# @@-----------@@ #
# @@@@|I R O N C L A D|@@@@ #
# @@@@@@@@-----------@@@@@@@@ #
# @@@@@@@@@@@@@ @@@@@@@ @@@@@@@ #
# @@@@@@@@@@@@@ @@@ @@@@@@ #
# @@@@@@@ @@@@@ @@@@ @@@@@@@@ #
# @@@@@@@ @@@@@ @@@@@@@ @@@@@@@@@@ #
# @@@@@@@ @@@@@ @@@@@ @@@@@@ @@@@@@ #
# @@@@@@@@@@ @@ @@@@ @@@@@@ #
# @@@@@@@@@@@@@@@ @@@@@ @@@@ @@@@ @@ @@ #
# @@@@@@@@@@@@@@@ @@@@@ @@@@@ @@@@@@@@@ @@ #
# @@@@@ @@@@ @@@ @@@ @@@ @@@@ @@@@@@@ #
# @@@@ @@@@ @@@ @@@ @@@ @@@ @@@@@@ #
# @@@@ @@@@@@@ @@@@@ @@@@@@ #
# @@@@@@@@@@@ @@@ @@@ @@@ @@@@@@@@@@ #
# @@@@@@@@@@@ @@@ @@@@@@ @@@@@ @@@@@@@@@ #
# @@@@@@@@@@@@@@@ @@@@@@ @@@@@@@@@@@@@@@ #
# @@@@@@@@@ @@@ @@@@@@@@@@@ #
# @@@@@@ @@ @@@@@@@@@ #
# @@@@@ @@@@@ @@@@@@@@@ #
# @@@@@@@@@@@@@@@@@@@@@@@@@ #
# @@@@@@@@@@@@@@@@@@@ #
# COMPILERS @@@@@@@@@@@ 2023-S #
# #
###################################################
cmake_minimum_required (VERSION 3.8)
project ("IronClad")
# Add source to this project's executable: check name and dependences
add_executable (IronClad
"Compilers.h" "Compilers.c"
"Reader.h" "Reader.c" "MainReader.c"
#"Scanner.h" "Scanner.c" "MainScanner.c"
#"Parser.h" "Parser.c" "MainParser.c"
)
# TO_DO: Add tests and install targets if needed.