-
Notifications
You must be signed in to change notification settings - Fork 313
/
Copy pathCMakeLists.txt
487 lines (416 loc) · 7.63 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
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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
# global includes
# not ideal but not so slow
# otherwise use target_include_directories
include_directories(
${GPSD_INCLUDE_DIRS}
${HAMLIB_INCLUDE_DIRS}
${ALSA_INCLUDE_DIRS}
${UDEV_INCLUDE_DIRS}
${PORTAUDIO_INCLUDE_DIRS}
${CUSTOM_GEOTRANZ_DIR}
)
if(WIN32 OR CYGWIN)
include_directories(
${CUSTOM_REGEX_DIR}
)
endif()
# direwolf
list(APPEND direwolf_SOURCES
direwolf.c
ais.c
aprs_tt.c
audio_stats.c
ax25_link.c
ax25_pad.c
ax25_pad2.c
beacon.c
config.c
decode_aprs.c
dedupe.c
demod_9600.c
demod_afsk.c
demod_psk.c
demod.c
digipeater.c
cdigipeater.c
dlq.c
dsp.c
dtime_now.c
dtmf.c
dwgps.c
dwsock.c
encode_aprs.c
encode_aprs.c
fcs_calc.c
fcs_calc.c
fx25_encode.c
fx25_extract.c
fx25_init.c
fx25_rec.c
fx25_send.c
fx25_auto.c
gen_tone.c
hdlc_rec.c
hdlc_rec2.c
hdlc_send.c
igate.c
kiss_frame.c
kiss.c
kissserial.c
kissnet.c
latlong.c
latlong.c
log.c
morse.c
multi_modem.c
waypoint.c
serial_port.c
pfilter.c
ptt.c
recv.c
rrbb.c
server.c
symbols.c
telemetry.c
textcolor.c
tq.c
tt_text.c
tt_user.c
xid.c
xmit.c
dwgps.c
dwgpsnmea.c
dwgpsd.c
mheard.c
)
if(LINUX)
list(APPEND direwolf_SOURCES
audio.c
)
if(UDEV_FOUND)
list(APPEND direwolf_SOURCES
cm108.c
)
endif()
elseif(WIN32 OR CYGWIN) # windows
list(APPEND direwolf_SOURCES
audio_win.c
# icon
# require plain gcc binary or link
#${CMAKE_SOURCE_DIR}/cmake/cpack/direwolf.rc
)
list(REMOVE_ITEM direwolf_SOURCES
dwgpsd.c
)
else() # macOS freebsd openbsd
list(APPEND direwolf_SOURCES
audio_portaudio.c
)
endif()
add_executable(direwolf
${direwolf_SOURCES}
)
target_link_libraries(direwolf
${GEOTRANZ_LIBRARIES}
${MISC_LIBRARIES}
${REGEX_LIBRARIES}
Threads::Threads
${GPSD_LIBRARIES}
${HAMLIB_LIBRARIES}
${ALSA_LIBRARIES}
${UDEV_LIBRARIES}
${PORTAUDIO_LIBRARIES}
)
if(WIN32 OR CYGWIN)
set_target_properties(direwolf
PROPERTIES COMPILE_FLAGS "-DUSE_REGEX_STATIC"
)
target_link_libraries(direwolf winmm ws2_32)
endif()
# decode_aprs
list(APPEND decode_aprs_SOURCES
decode_aprs.c
ais.c
kiss_frame.c
ax25_pad.c
dwgpsnmea.c
dwgps.c
dwgpsd.c
serial_port.c
symbols.c
textcolor.c
fcs_calc.c
latlong.c
log.c
telemetry.c
tt_text.c
)
if(WIN32 OR CYGWIN)
list(REMOVE_ITEM decode_aprs_SOURCES
dwgpsd.c
)
endif()
add_executable(decode_aprs
${decode_aprs_SOURCES}
)
set_target_properties(decode_aprs
PROPERTIES COMPILE_FLAGS "-DDECAMAIN -DUSE_REGEX_STATIC"
)
target_link_libraries(decode_aprs
${MISC_LIBRARIES}
${REGEX_LIBRARIES}
Threads::Threads
${GPSD_LIBRARIES}
)
# Convert between text and touch tone representation.
# text2tt
list(APPEND text2tt_SOURCES
tt_text.c
)
add_executable(text2tt
${text2tt_SOURCES}
)
set_target_properties(text2tt
PROPERTIES COMPILE_FLAGS "-DENC_MAIN"
)
target_link_libraries(text2tt
${MISC_LIBRARIES}
)
# tt2text
list(APPEND tt2text_SOURCES
tt_text.c
)
add_executable(tt2text
${tt2text_SOURCES}
)
set_target_properties(tt2text
PROPERTIES COMPILE_FLAGS "-DDEC_MAIN"
)
target_link_libraries(tt2text
${MISC_LIBRARIES}
)
# Convert between Latitude/Longitude and UTM coordinates.
# ll2utm
list(APPEND ll2utm_SOURCES
ll2utm.c
textcolor.c
)
add_executable(ll2utm
${ll2utm_SOURCES}
)
target_link_libraries(ll2utm
${GEOTRANZ_LIBRARIES}
${MISC_LIBRARIES}
)
# utm2ll
list(APPEND utm2ll_SOURCES
utm2ll.c
textcolor.c
)
add_executable(utm2ll
${utm2ll_SOURCES}
)
target_link_libraries(utm2ll
${GEOTRANZ_LIBRARIES}
${MISC_LIBRARIES}
)
# Convert from log file to GPX.
# log2gpx
list(APPEND log2gpx_SOURCES
log2gpx.c
textcolor.c
)
add_executable(log2gpx
${log2gpx_SOURCES}
)
target_link_libraries(log2gpx
${MISC_LIBRARIES}
)
# Test application to generate sound.
# gen_packets
list(APPEND gen_packets_SOURCES
gen_packets.c
ax25_pad.c
fx25_encode.c
fx25_init.c
fx25_send.c
hdlc_send.c
fcs_calc.c
gen_tone.c
morse.c
dtmf.c
textcolor.c
dsp.c
)
add_executable(gen_packets
${gen_packets_SOURCES}
)
target_link_libraries(gen_packets
${MISC_LIBRARIES}
)
# Unit test for AFSK demodulator
# atest
list(APPEND atest_SOURCES
atest.c
ais.c
demod.c
demod_afsk.c
demod_psk.c
demod_9600.c
dsp.c
fx25_extract.c
fx25_init.c
fx25_rec.c
hdlc_rec.c
hdlc_rec2.c
multi_modem.c
rrbb.c
fcs_calc.c
ax25_pad.c
decode_aprs.c
dwgpsnmea.c
dwgps.c
dwgpsd.c
serial_port.c
telemetry.c
dtime_now.c
latlong.c
symbols.c
tt_text.c
textcolor.c
)
if(WIN32 OR CYGWIN)
list(REMOVE_ITEM atest_SOURCES
dwgpsd.c
)
endif()
add_executable(atest
${atest_SOURCES}
)
target_link_libraries(atest
${MISC_LIBRARIES}
${GPSD_LIBRARIES}
${REGEX_LIBRARIES}
Threads::Threads
)
if(WIN32 OR CYGWIN)
set_target_properties(atest
PROPERTIES COMPILE_FLAGS "-DUSE_REGEX_STATIC"
)
endif()
# Multiple AGWPE network or serial port clients to test TNCs side by side.
# aclients
list(APPEND aclients_SOURCES
aclients.c
ax25_pad.c
fcs_calc.c
textcolor.c
)
add_executable(aclients
${aclients_SOURCES}
)
target_link_libraries(aclients
${MISC_LIBRARIES}
Threads::Threads
)
if(WIN32 OR CYGWIN)
target_link_libraries(aclients ws2_32)
endif()
# Talk to a KISS TNC.
# Note: kiss_frame.c has conditional compilation on KISSUTIL.
# kissutil
list(APPEND kissutil_SOURCES
kissutil.c
kiss_frame.c
ax25_pad.c
fcs_calc.c
textcolor.c
serial_port.c
dtime_now.c
dwsock.c
)
add_executable(kissutil
${kissutil_SOURCES}
)
set_target_properties(kissutil
PROPERTIES COMPILE_FLAGS "-DKISSUTIL"
)
target_link_libraries(kissutil
${MISC_LIBRARIES}
Threads::Threads
)
if(WIN32 OR CYGWIN)
target_link_libraries(kissutil ws2_32)
endif()
# List USB audio adapters than can use GPIO for PTT.
# cm108
if(UDEV_FOUND)
list(APPEND cm108_SOURCES
cm108.c
textcolor.c
)
add_executable(cm108
${cm108_SOURCES}
)
set_target_properties(cm108
PROPERTIES COMPILE_FLAGS "-DCM108_MAIN"
)
target_link_libraries(cm108
${MISC_LIBRARIES}
${UDEV_LIBRARIES}
)
endif()
# Touch Tone to Speech sample application.
# ttcalc
list(APPEND ttcalc_SOURCES
ttcalc.c
ax25_pad.c
fcs_calc.c
textcolor.c
)
add_executable(ttcalc
${ttcalc_SOURCES}
)
target_link_libraries(ttcalc
${MISC_LIBRARIES}
)
if(WIN32 OR CYGWIN)
target_link_libraries(ttcalc ws2_32)
endif()
# Sample for packet radio server application.
# appserver
list(APPEND appserver_SOURCES
appserver.c
agwlib.c
dwsock.c
dtime_now.c
ax25_pad.c
fcs_calc.c
textcolor.c
)
add_executable(appserver
${appserver_SOURCES}
)
target_link_libraries(appserver
${MISC_LIBRARIES}
Threads::Threads
)
if(WIN32 OR CYGWIN)
target_link_libraries(appserver ws2_32)
endif()
install(TARGETS direwolf DESTINATION ${INSTALL_BIN_DIR})
install(TARGETS decode_aprs DESTINATION ${INSTALL_BIN_DIR})
install(TARGETS text2tt DESTINATION ${INSTALL_BIN_DIR})
install(TARGETS tt2text DESTINATION ${INSTALL_BIN_DIR})
install(TARGETS ll2utm DESTINATION ${INSTALL_BIN_DIR})
install(TARGETS utm2ll DESTINATION ${INSTALL_BIN_DIR})
install(TARGETS aclients DESTINATION ${INSTALL_BIN_DIR})
install(TARGETS log2gpx DESTINATION ${INSTALL_BIN_DIR})
install(TARGETS gen_packets DESTINATION ${INSTALL_BIN_DIR})
install(TARGETS atest DESTINATION ${INSTALL_BIN_DIR})
install(TARGETS ttcalc DESTINATION ${INSTALL_BIN_DIR})
install(TARGETS kissutil DESTINATION ${INSTALL_BIN_DIR})
install(TARGETS appserver DESTINATION ${INSTALL_BIN_DIR})
if(UDEV_FOUND)
install(TARGETS cm108 DESTINATION ${INSTALL_BIN_DIR})
endif()