File tree 3 files changed +7
-12
lines changed
3 files changed +7
-12
lines changed Original file line number Diff line number Diff line change @@ -312,6 +312,8 @@ else()
312
312
set (ALSA_LIBRARIES "" )
313
313
set (UDEV_INCLUDE_DIRS "" )
314
314
set (UDEV_LIBRARIES "" )
315
+ # Version 1.7 supports CM108/CM119 GPIO PTT for Windows.
316
+ set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DUSE_CM108" )
315
317
set (PORTAUDIO_INCLUDE_DIRS "" )
316
318
set (PORTAUDIO_LIBRARIES "" )
317
319
endif ()
Original file line number Diff line number Diff line change 37
37
38
38
#endif
39
39
40
- // Version 1.7 supports CM108/CM119 GPIO PTT for Windows.
41
- // Define it here so we don't need to have separate Windows
42
- // check in all the places that test this.
43
- #if __WIN32__
44
- #define USE_CM108 1
45
- #endif
46
-
47
40
/*
48
41
* Previously, we could handle only a single audio device.
49
42
* This meant we could have only two radio channels.
Original file line number Diff line number Diff line change 162
162
#include <hamlib/rig.h>
163
163
#endif
164
164
165
- #ifdef USE_CM108
166
- #include "cm108.h"
167
- #endif
168
-
169
165
/* So we can have more common code for fd. */
170
166
typedef int HANDLE ;
171
167
#define INVALID_HANDLE_VALUE (-1)
172
168
173
- #endif
169
+ #endif /* __WIN32__ */
170
+
171
+ #ifdef USE_CM108
172
+ #include "cm108.h"
173
+ #endif /* USE_CM108 */
174
174
175
175
#include "textcolor.h"
176
176
#include "audio.h"
You can’t perform that action at this time.
0 commit comments