Skip to content

Commit 8cd1f87

Browse files
committed
cmake: windows build fixes
works with cygwin and x86_64-w64-mingw32-gcc/x86_64-w64-mingw32-g++ from the package installer of cygwin. To use that add the following lines to .bash_profile export CC=x86_64-w64-mingw32-gcc export CXX=x86_64-w64-mingw32-g++ you also need cmake from cygwin
1 parent 184b2af commit 8cd1f87

13 files changed

+184
-47
lines changed

CMakeLists.txt

+12-8
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ add_definitions("-DCOPYRIGHT=\"${COPYRIGHT}\"")
3131
set(IDENTIFIER "com.${COMPANY}.${APPLICATION_NAME}")
3232
add_definitions("-DIDENTIFIER=\"${IDENTIFIER}\"")
3333
# raspberry as only lxterminal not xterm
34-
if(NOT WIN32)
34+
if(NOT (WIN32 OR CYGWIN))
3535
find_program(BINARY_TERMINAL_BIN lxterminal)
3636
if(BINARY_TERMINAL_BIN)
3737
set(APPLICATION_DESKTOP_EXEC "${BINARY_TERMINAL_BIN} -e ${CMAKE_PROJECT_NAME}")
@@ -86,6 +86,7 @@ if(NOT DEFINED CMAKE_BUILD_TYPE OR "${CMAKE_BUILD_TYPE}" STREQUAL "")
8686
set(CMAKE_BUILD_TYPE Release CACHE STRING "Build type" FORCE)
8787
endif()
8888
message(STATUS "Build type set to: ${CMAKE_BUILD_TYPE}")
89+
message("CMake system: ${CMAKE_SYSTEM_NAME}")
8990

9091
# set compiler
9192
include(FindCompiler)
@@ -174,12 +175,19 @@ if(LINUX)
174175
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DUSE_CM108")
175176
endif()
176177

177-
elseif (NOT WIN32)
178+
elseif (NOT WIN32 AND NOT CYGWIN)
178179
find_package(portaudio REQUIRED)
179180
if(PORTAUDIO_FOUND)
180181
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DUSE_PORTAUDIO")
181182
endif()
182183

184+
else()
185+
set(ALSA_INCLUDE_DIRS "")
186+
set(ALSA_LIBRARIES "")
187+
set(UDEV_INCLUDE_DIRS "")
188+
set(UDEV_LIBRARIES "")
189+
set(PORTAUDIO_INCLUDE_DIRS "")
190+
set(PORTAUDIO_LIBRARIES "")
183191
endif()
184192

185193
# manage and fetch new data
@@ -194,13 +202,9 @@ add_subdirectory(${CUSTOM_MISC_DIR})
194202
add_subdirectory(src)
195203

196204
# ctest
197-
# Note CMake will generate tests only if the enable_testing() command
198-
# has been invoked. The CTest module invokes the command automatically
199-
# when the BUILD_TESTING option is ON.
200205
include(CTest)
201-
if(BUILD_TESTING)
202-
add_subdirectory(test)
203-
endif()
206+
enable_testing()
207+
add_subdirectory(test)
204208

205209
# manage scripts
206210
add_subdirectory(scripts)

cmake/modules/FindGPSD.cmake

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ else (GPSD_LIBRARIES AND GPSD_INCLUDE_DIRS)
8080

8181
endif (GPSD_LIBRARIES AND GPSD_INCLUDE_DIRS)
8282

83+
# maybe on CYGWIN gpsd works
8384
if (WIN32)
8485
set(GPSD_FOUND FALSE)
8586
set(GPSD_LIBRARIES "")

conf/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if(LINUX)
55
string(REGEX REPLACE "\n%W%[^\n]*" "" file_content "${file_content}")
66
string(REGEX REPLACE "\n%M%[^\n]*" "" file_content "${file_content}")
77
string(REGEX REPLACE "\n%L%([^\n]*)" "\n\\1" file_content "${file_content}")
8-
elseif(WIN32)
8+
elseif(WIN32 OR CYGWIN)
99
string(REGEX REPLACE "\n%M%[^\n]*" "" file_content "${file_content}")
1010
string(REGEX REPLACE "\n%L%[^\n]*" "" file_content "${file_content}")
1111
string(REGEX REPLACE "\n%W%([^\n]*)" "\n\\1" file_content "${file_content}")
@@ -36,7 +36,7 @@ install(FILES "${CUSTOM_CONF_DIR}/sdr.conf" DESTINATION share/doc/${CMAKE_PROJEC
3636
# This step would be done as ordinary user.
3737
# Some people like to put the direwolf config file in /etc/ax25.
3838
# Note that all of these are also in $(DESTDIR)/share/doc/direwolf/examples/.
39-
if(NOT WIN32)
39+
if(NOT (WIN32 OR CYGWIN))
4040
add_custom_target(install-conf
4141
COMMAND ${CMAKE_COMMAND}
4242
-DCUSTOM_BINARY_DIR="${CMAKE_BINARY_DIR}"

data/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ ExternalProject_Add(download_symbolsx
8686
TEST_COMMAND ""
8787
)
8888

89-
add_custom_target(data-update)
90-
add_dependencies(data-update data_rename download_tocalls download_symbols-new download_symbolsx)
89+
add_custom_target(update-data)
90+
add_dependencies(update-data data_rename download_tocalls download_symbols-new download_symbolsx)
9191

9292
install(FILES "${CUSTOM_BINARY_DATA_DIR}/${TOCALLS_TXT}" DESTINATION share/${PROJECT_NAME})
9393
install(FILES "${CUSTOM_BINARY_DATA_DIR}/${SYMBOLS-NEW_TXT}" DESTINATION share/${PROJECT_NAME})

external/geotranz/CMakeLists.txt

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
set(GEOTRANZ_LIBRARIES geotranz CACHE INTERNAL "geotranz")
44

5-
set(geotranz_SOURCES
6-
${geotranz_SOURCES}
5+
list(APPEND geotranz_SOURCES
76
error_string.c
87
mgrs.c
98
polarst.c
@@ -13,6 +12,6 @@ set(geotranz_SOURCES
1312
utm.c
1413
)
1514

16-
ADD_LIBRARY(geotranz STATIC
15+
add_library(geotranz STATIC
1716
${geotranz_SOURCES}
1817
)

external/misc/CMakeLists.txt

+12-7
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,20 @@ include_directories(
66
)
77

88
if(LINUX)
9-
set(misc_SOURCES
10-
${misc_SOURCES}
9+
list(APPEND misc_SOURCES
1110
# Provide our own copy of strlcpy and strlcat
1211
# because they are not included with Linux.
1312
${CUSTOM_MISC_DIR}/strlcpy.c
1413
${CUSTOM_MISC_DIR}/strlcat.c
1514
)
16-
ADD_LIBRARY(misc STATIC
15+
16+
add_library(misc STATIC
1717
${misc_SOURCES}
1818
)
19-
elseif(WIN32) # windows
20-
set(misc_SOURCES
21-
${misc_SOURCES}
19+
20+
elseif(WIN32 OR CYGWIN) # windows
21+
22+
list(APPEND misc_SOURCES
2223
# There are several string functions found in Linux
2324
# but not on Windows. Need to provide our own copy.
2425
${CUSTOM_MISC_DIR}/strsep.c
@@ -27,10 +28,14 @@ elseif(WIN32) # windows
2728
${CUSTOM_MISC_DIR}/strlcpy.c
2829
${CUSTOM_MISC_DIR}/strlcat.c
2930
)
30-
ADD_LIBRARY(misc STATIC
31+
32+
add_library(misc STATIC
3133
${misc_SOURCES}
3234
)
35+
3336
else()
37+
3438
# on macOS, OpenBSD and FreeBSD not misc is necessary
3539
set(MISC_LIBRARIES "" CACHE INTERNAL "")
40+
3641
endif()

external/regex/CMakeLists.txt

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
11
set(REGEX_LIBRARIES "" CACHE INTERNAL "")
22

3-
if(WIN32) # windows
3+
if(WIN32 OR CYGWIN) # windows
44

55
set(REGEX_LIBRARIES regex CACHE INTERNAL "regex")
66

7-
set(regex_SOURCES
8-
${regex_SOURCES}
7+
list(APPEND regex_SOURCES
98
# When building for Linux, we use regular expression
109
# functions supplied by the gnu C library.
1110
# For the native WIN32 version, we need to use our own copy.
1211
# These were copied from http://gnuwin32.sourceforge.net/packages/regex.htm
1312
# Consider upgrading from https://www.gnu.org/software/libc/sources.html
14-
#
15-
# check if needed: -Dbool=int -Dtrue=1 -Dfalse=0
1613
${CUSTOM_REGEX_DIR}/regex.c
1714
)
18-
ADD_LIBRARY(regex STATIC
15+
16+
add_library(regex STATIC
1917
${regex_SOURCES}
2018
)
19+
20+
set_target_properties(regex
21+
PROPERTIES COMPILE_FLAGS "-Dbool=int -Dtrue=1 -Dfalse=0 -DUSE_REGEX_STATIC"
22+
)
23+
2124
endif()

scripts/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
if(NOT WIN32)
2+
if(NOT (WIN32 OR CYGWIN))
33
install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dwespeak.sh" DESTINATION bin)
44
install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dw-start.sh" DESTINATION share/doc/${CMAKE_PROJECT_NAME}/examples)
55
add_subdirectory(telemetry-toolkit)

src/CMakeLists.txt

+55-7
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ include_directories(
1010
${CUSTOM_GEOTRANZ_DIR}
1111
)
1212

13+
if(WIN32 OR CYGWIN)
14+
include_directories(
15+
${CUSTOM_REGEX_DIR}
16+
)
17+
endif()
18+
1319
# build gen_fff to create fsk_fast_filter.h
1420
# optimization for slow processors
1521
list(APPEND gen_fff_SOURCES
@@ -105,17 +111,21 @@ if(LINUX)
105111
cm108.c
106112
)
107113
endif()
108-
elseif(WIN32) # windows
114+
elseif(WIN32 OR CYGWIN) # windows
109115
list(APPEND direwolf_SOURCES
110116
audio_win.c
111117

112118
# 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
114128
)
115-
else() # macOS freebsd openbsd
116-
list(APPEND direwolf_SOURCES
117-
audio_portaudio.c
118-
)
119129
endif()
120130

121131
add_executable(direwolf
@@ -136,6 +146,13 @@ target_link_libraries(direwolf
136146
${PORTAUDIO_LIBRARIES}
137147
)
138148

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+
139156
# decode_aprs
140157
list(APPEND decode_aprs_SOURCES
141158
decode_aprs.c
@@ -154,18 +171,25 @@ list(APPEND decode_aprs_SOURCES
154171
tt_text.c
155172
)
156173

174+
if(WIN32 OR CYGWIN)
175+
list(REMOVE_ITEM decode_aprs_SOURCES
176+
dwgpsd.c
177+
)
178+
endif()
179+
157180
add_executable(decode_aprs
158181
${decode_aprs_SOURCES}
159182
)
160183

161184
add_dependencies(decode_aprs gen_fff)
162185

163186
set_target_properties(decode_aprs
164-
PROPERTIES COMPILE_FLAGS "-DDECAMAIN"
187+
PROPERTIES COMPILE_FLAGS "-DDECAMAIN -DUSE_REGEX_STATIC"
165188
)
166189

167190
target_link_libraries(decode_aprs
168191
${MISC_LIBRARIES}
192+
${REGEX_LIBRARIES}
169193
Threads::Threads
170194
${GPSD_LIBRARIES}
171195
)
@@ -306,6 +330,12 @@ list(APPEND atest_SOURCES
306330
textcolor.c
307331
)
308332

333+
if(WIN32 OR CYGWIN)
334+
list(REMOVE_ITEM atest_SOURCES
335+
dwgpsd.c
336+
)
337+
endif()
338+
309339
add_executable(atest
310340
${atest_SOURCES}
311341
)
@@ -315,9 +345,16 @@ add_dependencies(atest gen_fff)
315345
target_link_libraries(atest
316346
${MISC_LIBRARIES}
317347
${GPSD_LIBRARIES}
348+
${REGEX_LIBRARIES}
318349
Threads::Threads
319350
)
320351

352+
if(WIN32 OR CYGWIN)
353+
set_target_properties(atest
354+
PROPERTIES COMPILE_FLAGS "-DUSE_REGEX_STATIC"
355+
)
356+
endif()
357+
321358

322359
# Multiple AGWPE network or serial port clients to test TNCs side by side.
323360
# aclients
@@ -337,6 +374,10 @@ target_link_libraries(aclients
337374
Threads::Threads
338375
)
339376

377+
if(WIN32 OR CYGWIN)
378+
target_link_libraries(aclients ws2_32)
379+
endif()
380+
340381

341382
# Talk to a KISS TNC.
342383
# Note: kiss_frame.c has conditional compilation on KISSUTIL.
@@ -365,6 +406,10 @@ target_link_libraries(kissutil
365406
Threads::Threads
366407
)
367408

409+
if(WIN32 OR CYGWIN)
410+
target_link_libraries(kissutil ws2_32)
411+
endif()
412+
368413

369414
# List USB audio adapters than can use GPIO for PTT.
370415
# cm108
@@ -406,6 +451,9 @@ target_link_libraries(ttcalc
406451
${MISC_LIBRARIES}
407452
)
408453

454+
if(WIN32 OR CYGWIN)
455+
target_link_libraries(ttcalc ws2_32)
456+
endif()
409457

410458
install(TARGETS direwolf DESTINATION bin)
411459
install(TARGETS decode_aprs DESTINATION bin)

src/beacon.c

-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@
5959
#include "mheard.h"
6060

6161

62-
6362
/*
6463
* Save pointers to configuration settings.
6564
*/

src/direwolf.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@
113113
#define SLEEP_MS(n) usleep((n)*1000)
114114
#endif
115115

116-
117116
#if __WIN32__
118117

119118
#define PTW32_STATIC_LIB
@@ -124,7 +123,7 @@
124123
#define _POSIX_C_SOURCE 1
125124

126125
#else
127-
#include <pthread.h>
126+
#include <pthread.h>
128127
#endif
129128

130129

src/dtime_now.c

-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ double dtime_now (void)
8484
}
8585

8686

87-
8887
/*------------------------------------------------------------------
8988
*
9089
* Name: timestamp_now

0 commit comments

Comments
 (0)