-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy_config.sh
executable file
·71 lines (56 loc) · 1.61 KB
/
my_config.sh
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
#!/bin/bash
###################################
# Mandatory configuration #
###################################
#Edit the next line with the path of your libft project.
PATH_LIBFT=".."
#If you use a relative path, don't put double quotes.
#For example :
#PATH_LIBFT=~/libft ==> Right
#PATH_LIBFT="~/libft" ==> Wrong
#If you encounter some problems with a relative path, use an absolute path.
#You can put double quotes with the absolute path.
#For example :
#PATH_LIBFT=/home/user/libft ==> Right
#PATH_LIBFT="/home/user/libft" ==> Right
##############
# HEADER DIR #
##############
# Edit with the name of your header's directory
# Keep it empty if you have your header file in your main directory
HEADER_DIR=""
###########
# SRC DIR #
###########
# Edit with the name of your sources' directory
# Keep it empty if you have your header file in your main directory
SRC_DIR=""
###################################
# Optionnal configuration #
###################################
#By default, the deepthought file will be generated in the grademe directory.
#Edit the next line with an absolute path if you want to change it.
PATH_DEEPTHOUGHT="${PATH_TEST}"
#You can chose color and text effect.
#Colors available :
# - BLACK
# - CYAN
# - GREEN
# - YELLOW
# - RED
# - BLUE
# - PURPLE
# - WHITE
#Effects available :
# - BOLD
# - UNDERLINE
#For example :
#COLOR_EXAMPLE="${UNDERLINE}${BOLD}${PURPLE}
COLOR_OK="${GREEN}"
COLOR_FAIL="${RED}"
COLOR_WARNING="${YELLOW}"
COLOR_TITLE="${BOLD}${BLUE}"
COLOR_FUNC="${CYAN}"
COLOR_PART="${UNDERLINE}${PURPLE}"
COLOR_TOTAL="${BOLD}${YELLOW}"
COLOR_DEEPTHOUGHT_PATH="${BOLD}${PURPLE}"