-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
102 lines (98 loc) · 2.54 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
cmake_minimum_required(VERSION 3.14)
project(work C)
set(CMAKE_C_STANDARD 11)
include_directories(libft)
include_directories(resources)
include_directories(vm)
add_executable(work
libft/colors.c
libft/free_mem.c
libft/ft_atoi.c
libft/ft_bzero.c
libft/ft_ftoa.c
libft/ft_isalnum.c
libft/ft_isalpha.c
libft/ft_isascii.c
libft/ft_isdigit.c
libft/ft_isprint.c
libft/ft_itoa.c
libft/ft_itoa_base.c
libft/ft_lstadd.c
libft/ft_lstdel.c
libft/ft_lstdelone.c
libft/ft_lstiter.c
libft/ft_lstmap.c
libft/ft_lstnew.c
libft/ft_memalloc.c
libft/ft_memccpy.c
libft/ft_memchr.c
libft/ft_memcmp.c
libft/ft_memcpy.c
libft/ft_memdel.c
libft/ft_memmove.c
libft/ft_memset.c
libft/ft_printf.c
libft/ft_putchar.c
libft/ft_putchar_fd.c
libft/ft_putendl.c
libft/ft_putendl_fd.c
libft/ft_putnbr.c
libft/ft_putnbr_fd.c
libft/ft_putstr.c
libft/ft_putstr_fd.c
libft/ft_strcat.c
libft/ft_strchr.c
libft/ft_strclr.c
libft/ft_strcmp.c
libft/ft_strcpy.c
libft/ft_strdel.c
libft/ft_strdup.c
libft/ft_strequ.c
libft/ft_striter.c
libft/ft_striteri.c
libft/ft_strjoin.c
libft/ft_strlcat.c
libft/ft_strlen.c
libft/ft_strmap.c
libft/ft_strmapi.c
libft/ft_strncat.c
libft/ft_strncmp.c
libft/ft_strncpy.c
libft/ft_strnequ.c
libft/ft_strnew.c
libft/ft_strnstr.c
libft/ft_strrchr.c
libft/ft_strsplit.c
libft/ft_strstr.c
libft/ft_strsub.c
libft/ft_strtrim.c
libft/ft_tolower.c
libft/ft_toupper.c
libft/get_next_line.c
libft/libft.h
libft/modifiers.c
libft/parser.c
libft/precision.c
libft/weigth_n_flags.c
libft/ft_atoi_base.c
resources/op.h
resources/op.c
vm/src/virtual_machine.c
vm/src/dblst_tools.c
vm/src/reader.c
vm/src/cycle.c
vm/src/create_arena.c
vm/src/error_management.c
vm/src/commands.c
vm/src/checker.c
vm/src/dump.c
vm/src/order.c
vm/src/define.c
vm/src/get.c
vm/src/get_arg.c
vm/src/pars_args.c
vm/src/skip.c
vm/src/check_code_type.c
vm/src/commands_2.c
vm/src/commands_3.c
vm/src/commands_4.c)