1
1
# global includes
2
2
# not ideal but not so slow
3
+ # otherwise use target_include_directories
3
4
include_directories (
4
5
${GPSD_INCLUDE_DIRS}
5
6
${HAMLIB_INCLUDE_DIRS}
@@ -11,8 +12,7 @@ include_directories(
11
12
12
13
# build gen_fff to create fsk_fast_filter.h
13
14
# optimization for slow processors
14
- set (gen_fff_SOURCES
15
- ${gen_fff_SOURCES}
15
+ list (APPEND gen_fff_SOURCES
16
16
demod_afsk.c
17
17
dsp.c
18
18
textcolor.c
@@ -32,9 +32,9 @@ add_custom_command(TARGET gen_fff
32
32
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
33
33
)
34
34
35
+
35
36
# direwolf
36
- set (direwolf_SOURCES
37
- ${direwolf_SOURCES}
37
+ list (APPEND direwolf_SOURCES
38
38
direwolf.c
39
39
aprs_tt.c
40
40
audio_stats.c
@@ -97,29 +97,25 @@ set(direwolf_SOURCES
97
97
)
98
98
99
99
if (LINUX)
100
- set (direwolf_SOURCES
101
- ${direwolf_SOURCES}
100
+ list (APPEND direwolf_SOURCES
102
101
audio.c
103
102
)
104
103
if (UDEV_FOUND)
105
- set (direwolf_SOURCES
106
- ${direwolf_SOURCES}
104
+ list (APPEND direwolf_SOURCES
107
105
cm108.c
108
106
)
109
107
endif ()
110
108
elseif (WIN32 ) # windows
111
- set (direwolf_SOURCES
112
- ${direwolf_SOURCES}
113
- audio_win.c
109
+ list (APPEND direwolf_SOURCES
110
+ audio_win.c
114
111
115
- # icon
116
- ${CMAKE_SOURCE_DIR} /cmake/cpack/direwolf.rc
117
- )
112
+ # icon
113
+ ${CMAKE_SOURCE_DIR} /cmake/cpack/direwolf.rc
114
+ )
118
115
else () # macOS freebsd openbsd
119
- set (direwolf_SOURCES
120
- ${direwolf_SOURCES}
121
- audio_portaudio.c
122
- )
116
+ list (APPEND direwolf_SOURCES
117
+ audio_portaudio.c
118
+ )
123
119
endif ()
124
120
125
121
add_executable (direwolf
@@ -141,8 +137,7 @@ target_link_libraries(direwolf
141
137
)
142
138
143
139
# decode_aprs
144
- set (decode_aprs_SOURCES
145
- ${decode_aprs_SOURCES}
140
+ list (APPEND decode_aprs_SOURCES
146
141
decode_aprs.c
147
142
kiss_frame.c
148
143
ax25_pad.c
@@ -178,8 +173,7 @@ target_link_libraries(decode_aprs
178
173
179
174
# Convert between text and touch tone representation.
180
175
# text2tt
181
- set (text2tt_SOURCES
182
- ${text2tt_SOURCES}
176
+ list (APPEND text2tt_SOURCES
183
177
tt_text.c
184
178
)
185
179
@@ -196,8 +190,7 @@ target_link_libraries(text2tt
196
190
)
197
191
198
192
# tt2text
199
- set (tt2text_SOURCES
200
- ${tt2text_SOURCES}
193
+ list (APPEND tt2text_SOURCES
201
194
tt_text.c
202
195
)
203
196
@@ -216,8 +209,7 @@ target_link_libraries(tt2text
216
209
217
210
# Convert between Latitude/Longitude and UTM coordinates.
218
211
# ll2utm
219
- set (ll2utm_SOURCES
220
- ${ll2utm_SOURCES}
212
+ list (APPEND ll2utm_SOURCES
221
213
ll2utm.c
222
214
textcolor.c
223
215
)
@@ -232,8 +224,7 @@ target_link_libraries(ll2utm
232
224
)
233
225
234
226
# utm2ll
235
- set (utm2ll_SOURCES
236
- ${utm2ll_SOURCES}
227
+ list (APPEND utm2ll_SOURCES
237
228
utm2ll.c
238
229
textcolor.c
239
230
)
@@ -250,8 +241,7 @@ target_link_libraries(utm2ll
250
241
251
242
# Convert from log file to GPX.
252
243
# log2gpx
253
- set (log2gpx_SOURCES
254
- ${log2gpx_SOURCES}
244
+ list (APPEND log2gpx_SOURCES
255
245
log2gpx.c
256
246
textcolor.c
257
247
)
@@ -267,8 +257,7 @@ target_link_libraries(log2gpx
267
257
268
258
# Test application to generate sound.
269
259
# gen_packets
270
- set (gen_packets_SOURCES
271
- ${gen_packets_SOURCES}
260
+ list (APPEND gen_packets_SOURCES
272
261
gen_packets.c
273
262
ax25_pad.c
274
263
hdlc_send.c
@@ -291,8 +280,7 @@ target_link_libraries(gen_packets
291
280
292
281
# Unit test for AFSK demodulator
293
282
# atest
294
- set (atest_SOURCES
295
- ${atest_SOURCES}
283
+ list (APPEND atest_SOURCES
296
284
atest.c
297
285
demod.c
298
286
demod_afsk.c
@@ -333,8 +321,7 @@ target_link_libraries(atest
333
321
334
322
# Multiple AGWPE network or serial port clients to test TNCs side by side.
335
323
# aclients
336
- set (aclients_SOURCES
337
- ${aclients_SOURCES}
324
+ list (APPEND aclients_SOURCES
338
325
aclients.c
339
326
ax25_pad.c
340
327
fcs_calc.c
@@ -354,8 +341,7 @@ target_link_libraries(aclients
354
341
# Talk to a KISS TNC.
355
342
# Note: kiss_frame.c has conditional compilation on KISSUTIL.
356
343
# kissutil
357
- set (kissutil_SOURCES
358
- ${kissutil_SOURCES}
344
+ list (APPEND kissutil_SOURCES
359
345
kissutil.c
360
346
kiss_frame.c
361
347
ax25_pad.c
@@ -383,8 +369,7 @@ target_link_libraries(kissutil
383
369
# List USB audio adapters than can use GPIO for PTT.
384
370
# cm108
385
371
if (UDEV_FOUND)
386
- set (cm108_SOURCES
387
- ${cm108_SOURCES}
372
+ list (APPEND cm108_SOURCES
388
373
cm108.c
389
374
textcolor.c
390
375
)
@@ -406,8 +391,7 @@ endif()
406
391
407
392
# Touch Tone to Speech sample application.
408
393
# ttcalc
409
- set (ttcalc_SOURCES
410
- ${ttcalc_SOURCES}
394
+ list (APPEND ttcalc_SOURCES
411
395
ttcalc.c
412
396
ax25_pad.c
413
397
fcs_calc.c
@@ -438,18 +422,3 @@ install(TARGETS kissutil DESTINATION bin)
438
422
if (UDEV_FOUND)
439
423
install (TARGETS cm108 DESTINATION bin)
440
424
endif ()
441
-
442
-
443
-
444
- ## TESTS
445
- # Note CMake will generate tests only if the enable_testing() command
446
- # has been invoked. The CTest module invokes the command automatically
447
- # when the BUILD_TESTING option is ON.
448
- include (CTest)
449
- if (BUILD_TESTING)
450
- # add_test(NAME <name> COMMAND <command> [<arg>...]
451
- # [CONFIGURATIONS <config>...]
452
- # [WORKING_DIRECTORY <dir>])
453
-
454
-
455
- endif ()
0 commit comments