forked from channgo2203/cmake-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake.sh
executable file
·251 lines (216 loc) · 5.48 KB
/
make.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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
#!/bin/bash
help()
{
echo -e "Usage: `basename $0` [-x] [-s] [-a] [-d] [-t] [-p _projects_home_] [-l _helpers_home_] [-k _extras_home_] [-h]"
echo -e " -x - build x86"
echo -e " -s - build stm32"
echo -e " -a - build avr"
echo -e " -d - pull dependencies"
echo -e " -t - enable unit tests"
echo -e " -p - absolute path to projects home"
echo -e " -l - absolute path to external projects base dir"
echo -e " -k - absolute path to cmake-helpers dir"
echo -e " -h - this help"
}
# Clone repository in github or pull any changes.
function clone_or_pull {
echo "Checking $(basename $1)"
echo -e " Source: $2"
echo -e " Target: $1"
if [ -d ${1} ]; then
(cd ${1} && git pull)
else
git clone $2 ${1}
fi
}
X86=0
STM32=0
AVR=0
DEPS=0
TESTS=""
while getopts "xsadtp:l:k:h" Option
do
case $Option in
x) X86=1;;
s) STM32=1;;
a) AVR=1;;
d) DEPS=1;;
t) TESTS="-DENABLE_TESTS=ON";;
p) PROJECTS_HOME=${OPTARG};;
l) XTRA_HOME=${OPTARG};;
k) CMAKEHELPERS_HOME=${OPTARG};;
h) help; exit 0;;
\?) help; exit 22;;
esac
done
shift $(($OPTIND - 1))
################################################################################
# Dependency paths
echo "Project home is $PROJECTS_HOME"
echo "Extra home is $XTRA_HOME"
echo "Cmake-helpers home is $CMAKEHELPERS_HOME"
if [ -z ${PROJECTS_HOME} ]; then
# Assume the script is invoked from within its project.
export PROJECTS_HOME="${PWD}/../.."
else
export PROJECTS_HOME
fi
if [ -z ${XTRA_HOME} ]; then
export XTRA_HOME=${PROJECTS_HOME}/other
else
export XTRA_HOME
fi
# Bolt Robotics projects
if [ -z ${CMAKEHELPERS_HOME} ]; then
export CMAKEHELPERS_HOME=${PROJECTS_HOME}/cmake-helpers
else
export CMAKEHELPERS_HOME
fi
# Third-party projects
if [ -z ${CTPP2_HOME} ]; then
export CTPP2_HOME=${XTRA_HOME}/ctpp
else
export CTPP2_HOME
fi
if [ -z ${GTEST_HOME} ]; then
export GTEST_HOME=${XTRA_HOME}/gtest
else
export GTEST_HOME
fi
if [ -z ${SPDLOG_HOME} ]; then
export SPDLOG_HOME=${XTRA_HOME}/spdlog
else
export SPDLOG_HOME
fi
if [ -z ${FREERTOS_HOME} ]; then
export FREERTOS_HOME=${XTRA_HOME}/FreeRTOSv10.1.1
else
export FREERTOS_HOME
fi
if [ -z ${LIBOPENCM3_HOME} ]; then
export LIBOPENCM3_HOME=${XTRA_HOME}/libopencm3
else
export LIBOPENCM3_HOME
fi
################################################################################
if [ "${DEPS}" -eq 1 ]; then
clone_or_pull "${GTEST_HOME}" "https://github.com/google/googletest.git"
clone_or_pull "${LIBOPENCM3_HOME}" "https://github.com/libopencm3/libopencm3.git"
fi
if [ ${X86} -eq 1 ]; then
(cd ${PROJECTS_HOME} \
&& mkdir -p "build-x86" \
&& cd "build-x86" \
&& cmake -DBTR_X86=1 ${TESTS} "$@" .. \
&& make)
fi
if [ ${STM32} -eq 1 ]; then
(cd ${PROJECTS_HOME} \
&& mkdir -p "build-stm32" \
&& cd "build-stm32" \
&& cmake -DBTR_STM32=1 "$@" .. \
&& make)
fi
if [ ${AVR} -eq 1 ]; then
(cd ${PROJECTS_HOME} \
&& mkdir -p "build-avr" \
&& cd "build-avr" \
&& cmake -DBTR_AVR=1 "$@" .. \
&& make)
fi
help()
{
echo -e "Usage: `basename $0` [-x] [-s] [-a] [-d] [-t] [-p _projects_home_] [-h]"
echo -e " -x - build x86"
echo -e " -s - build stm32"
echo -e " -a - build avr"
echo -e " -d - pull dependencies"
echo -e " -t - enable unit tests"
echo -e " -p - absolute path to projects home"
echo -e " -h - this help"
}
# Clone repository in github or pull any changes.
function clone_or_pull {
echo "Checking $(basename $1)"
echo -e " Source: $2"
echo -e " Target: $1"
if [ -d ${1} ]; then
(cd ${1} && git pull)
else
git clone $2 ${1}
fi
}
X86=0
STM32=0
AVR=0
DEPS=0
TESTS=""
while getopts "xsadtp:h" Option
do
case $Option in
x) X86=1;;
s) STM32=1;;
a) AVR=1;;
d) DEPS=1;;
t) TESTS="-DENABLE_TESTS=ON";;
p) PROJECTS_HOME=${OPTARG};;
h) help; exit 0;;
\?) help; exit 22;;
esac
done
shift $(($OPTIND - 1))
################################################################################
# Dependency paths
if [ -z ${PROJECTS_HOME} ]; then
# Assume the script is invoked from within its project.
export PROJECTS_HOME="${PWD}/../.."
fi
if [ -z ${XTRA_HOME} ]; then
export XTRA_HOME=${PROJECTS_HOME}/other
fi
# Bolt Robotics projects
if [ -z ${CMAKEHELPERS_HOME} ]; then
export CMAKEHELPERS_HOME=${PROJECTS_HOME}/cmake-helpers
fi
# Third-party projects
if [ -z ${CTPP2_HOME} ]; then
export CTPP2_HOME=${XTRA_HOME}/ctpp
fi
if [ -z ${GTEST_HOME} ]; then
export GTEST_HOME=${XTRA_HOME}/gtest
fi
if [ -z ${SPDLOG_HOME} ]; then
export SPDLOG_HOME=${XTRA_HOME}/spdlog
fi
if [ -z ${FREERTOS_HOME} ]; then
export FREERTOS_HOME=${XTRA_HOME}/FreeRTOSv10.1.1
fi
if [ -z ${LIBOPENCM3_HOME} ]; then
export LIBOPENCM3_HOME=${XTRA_HOME}/libopencm3
fi
################################################################################
if [ "${DEPS}" -eq 1 ]; then
clone_or_pull "${GTEST_HOME}" "https://github.com/google/googletest.git"
clone_or_pull "${LIBOPENCM3_HOME}" "https://github.com/libopencm3/libopencm3.git"
fi
if [ ${X86} -eq 1 ]; then
(cd ${CMAKEHELPERS_HOME}/example \
&& mkdir -p "build-x86" \
&& cd "build-x86" \
&& cmake -DBTR_X86=1 ${TESTS} "$@" .. \
&& make)
fi
if [ ${STM32} -eq 1 ]; then
(cd ${CMAKEHELPERS_HOME}/example \
&& mkdir -p "build-stm32" \
&& cd "build-stm32" \
&& cmake -DBTR_STM32=1 "$@" .. \
&& make)
fi
if [ ${AVR} -eq 1 ]; then
(cd ${CMAKEHELPERS_HOME}/example \
&& mkdir -p "build-avr" \
&& cd "build-avr" \
&& cmake -DBTR_AVR=1 "$@" .. \
&& make)
fi