-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
80 lines (64 loc) · 3.12 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
cmake_minimum_required(VERSION 3.5)
project(C0Compiler)
set(CMAKE_C_STANDARD 11)
#set(CMAKE_PREFIX_PATH /usr/local/opt/bison;/usr/local/opt/flex)
find_package(BISON REQUIRED)
find_package(FLEX REQUIRED)
BISON_TARGET(MyParser parsing/parser.y ${PROJECT_SOURCE_DIR}/parsing/parser.c)
FLEX_TARGET(MyScanner parsing/lexer.l ${PROJECT_SOURCE_DIR}/parsing/lexer.c)
ADD_FLEX_BISON_DEPENDENCY(MyScanner MyParser)
# Compiler flags to enable more warnings
if (CMAKE_C_COMPILER_ID STREQUAL "GNU")
# set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra")
elseif (CMAKE_C_COMPILER_ID STREQUAL "Clang" OR CMAKE_C_COMPILER_ID STREQUAL "AppleClang")
# set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra")
elseif (CMAKE_C_COMPILER_ID STREQUAL "MSVC")
# set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W4")
endif ()
# Compiler flags to enable all warnings
if (CMAKE_C_COMPILER_ID STREQUAL "GNU")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -pedantic")
elseif (CMAKE_C_COMPILER_ID STREQUAL "Clang" OR CMAKE_C_COMPILER_ID STREQUAL "AppleClang")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Weverything")
elseif (CMAKE_C_COMPILER_ID STREQUAL "MSVC")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /Wall")
endif ()
# Compiler flags to silence/or add some warnings
if (CMAKE_C_COMPILER_ID STREQUAL "GNU")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
elseif (CMAKE_C_COMPILER_ID STREQUAL "Clang" OR CMAKE_C_COMPILER_ID STREQUAL "AppleClang")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
elseif (CMAKE_C_COMPILER_ID STREQUAL "MSVC")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /w44365")
endif ()
#set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address")
# Silence warning C4996 on Microsoft Compilers
if (MSVC)
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
add_definitions(-D_CRT_NONSTDC_NO_DEPRECATE)
endif ()
file(GLOB source_SRC "${PROJECT_SOURCE_DIR}/source/*.h")
file(GLOB source_HDR "${PROJECT_SOURCE_DIR}/source/*.c")
set(SOURCE_FILES ${source_SRC} ${source_HDR} parsing/parser.y parsing/lexer.l)
include_directories(Compiler ${PROJECT_SOURCE_DIR}/parsing)
include_directories(Compiler ${PROJECT_SOURCE_DIR}/source)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_SOURCE_DIR}/executable)
add_executable(Compiler ${SOURCE_FILES} ${BISON_MyParser_OUTPUTS} ${FLEX_MyScanner_OUTPUTS})
enable_testing()
add_test(1 ../executable/Compiler ../Inputs/1.txt)
add_test(2 ../executable/Compiler ../Inputs/2.txt)
add_test(3 ../executable/Compiler ../Inputs/3.txt)
add_test(4 ../executable/Compiler ../Inputs/4.txt)
add_test(5 ../executable/Compiler ../Inputs/5.txt)
add_test(6 ../executable/Compiler ../Inputs/6.txt)
add_test(7 ../executable/Compiler ../Inputs/7.txt)
add_test(8 ../executable/Compiler ../Inputs/8.txt)
add_test(9 ../executable/Compiler ../Inputs/9.txt)
add_test(10 ../executable/Compiler ../Inputs/10.txt)
add_test(11 ../executable/Compiler ../Inputs/11.txt)
add_test(12 ../executable/Compiler ../Inputs/12.txt)
add_test(13 ../executable/Compiler ../Inputs/13.txt)
add_test(14 ../executable/Compiler ../Inputs/14.txt)
add_test(empty ../executable/Compiler ../Inputs/empty.txt)
add_test(overflow ../executable/Compiler ../Inputs/overflow.txt)
add_test(mega_test ../executable/Compiler ../Inputs/mega_test.txt)