@@ -10,6 +10,12 @@ include_directories(
10
10
${CUSTOM_GEOTRANZ_DIR}
11
11
)
12
12
13
+ if (WIN32 OR CYGWIN )
14
+ include_directories (
15
+ ${CUSTOM_REGEX_DIR}
16
+ )
17
+ endif ()
18
+
13
19
# build gen_fff to create fsk_fast_filter.h
14
20
# optimization for slow processors
15
21
list (APPEND gen_fff_SOURCES
@@ -105,17 +111,21 @@ if(LINUX)
105
111
cm108.c
106
112
)
107
113
endif ()
108
- elseif (WIN32 ) # windows
114
+ elseif (WIN32 OR CYGWIN ) # windows
109
115
list (APPEND direwolf_SOURCES
110
116
audio_win.c
111
117
112
118
# icon
113
- ${CMAKE_SOURCE_DIR} /cmake/cpack/direwolf.rc
119
+ # require plain gcc binary or link
120
+ #${CMAKE_SOURCE_DIR}/cmake/cpack/direwolf.rc
121
+ )
122
+ list (REMOVE_ITEM direwolf_SOURCES
123
+ dwgpsd.c
124
+ )
125
+ else () # macOS freebsd openbsd
126
+ list (APPEND direwolf_SOURCES
127
+ audio_portaudio.c
114
128
)
115
- else () # macOS freebsd openbsd
116
- list (APPEND direwolf_SOURCES
117
- audio_portaudio.c
118
- )
119
129
endif ()
120
130
121
131
add_executable (direwolf
@@ -136,6 +146,13 @@ target_link_libraries(direwolf
136
146
${PORTAUDIO_LIBRARIES}
137
147
)
138
148
149
+ if (WIN32 OR CYGWIN )
150
+ set_target_properties (direwolf
151
+ PROPERTIES COMPILE_FLAGS "-DUSE_REGEX_STATIC"
152
+ )
153
+ target_link_libraries (direwolf winmm ws2_32)
154
+ endif ()
155
+
139
156
# decode_aprs
140
157
list (APPEND decode_aprs_SOURCES
141
158
decode_aprs.c
@@ -154,18 +171,25 @@ list(APPEND decode_aprs_SOURCES
154
171
tt_text.c
155
172
)
156
173
174
+ if (WIN32 OR CYGWIN )
175
+ list (REMOVE_ITEM decode_aprs_SOURCES
176
+ dwgpsd.c
177
+ )
178
+ endif ()
179
+
157
180
add_executable (decode_aprs
158
181
${decode_aprs_SOURCES}
159
182
)
160
183
161
184
add_dependencies (decode_aprs gen_fff)
162
185
163
186
set_target_properties (decode_aprs
164
- PROPERTIES COMPILE_FLAGS "-DDECAMAIN"
187
+ PROPERTIES COMPILE_FLAGS "-DDECAMAIN -DUSE_REGEX_STATIC "
165
188
)
166
189
167
190
target_link_libraries (decode_aprs
168
191
${MISC_LIBRARIES}
192
+ ${REGEX_LIBRARIES}
169
193
Threads::Threads
170
194
${GPSD_LIBRARIES}
171
195
)
@@ -306,6 +330,12 @@ list(APPEND atest_SOURCES
306
330
textcolor.c
307
331
)
308
332
333
+ if (WIN32 OR CYGWIN )
334
+ list (REMOVE_ITEM atest_SOURCES
335
+ dwgpsd.c
336
+ )
337
+ endif ()
338
+
309
339
add_executable (atest
310
340
${atest_SOURCES}
311
341
)
@@ -315,9 +345,16 @@ add_dependencies(atest gen_fff)
315
345
target_link_libraries (atest
316
346
${MISC_LIBRARIES}
317
347
${GPSD_LIBRARIES}
348
+ ${REGEX_LIBRARIES}
318
349
Threads::Threads
319
350
)
320
351
352
+ if (WIN32 OR CYGWIN )
353
+ set_target_properties (atest
354
+ PROPERTIES COMPILE_FLAGS "-DUSE_REGEX_STATIC"
355
+ )
356
+ endif ()
357
+
321
358
322
359
# Multiple AGWPE network or serial port clients to test TNCs side by side.
323
360
# aclients
@@ -337,6 +374,10 @@ target_link_libraries(aclients
337
374
Threads::Threads
338
375
)
339
376
377
+ if (WIN32 OR CYGWIN )
378
+ target_link_libraries (aclients ws2_32)
379
+ endif ()
380
+
340
381
341
382
# Talk to a KISS TNC.
342
383
# Note: kiss_frame.c has conditional compilation on KISSUTIL.
@@ -365,6 +406,10 @@ target_link_libraries(kissutil
365
406
Threads::Threads
366
407
)
367
408
409
+ if (WIN32 OR CYGWIN )
410
+ target_link_libraries (kissutil ws2_32)
411
+ endif ()
412
+
368
413
369
414
# List USB audio adapters than can use GPIO for PTT.
370
415
# cm108
@@ -406,6 +451,9 @@ target_link_libraries(ttcalc
406
451
${MISC_LIBRARIES}
407
452
)
408
453
454
+ if (WIN32 OR CYGWIN )
455
+ target_link_libraries (ttcalc ws2_32)
456
+ endif ()
409
457
410
458
install (TARGETS direwolf DESTINATION bin)
411
459
install (TARGETS decode_aprs DESTINATION bin)
0 commit comments