Skip to content
This repository was archived by the owner on Jan 27, 2021. It is now read-only.

Commit 7228e75

Browse files
committed
Sorry, wrong notation at CMAKE
1 parent f0c0e8a commit 7228e75

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ MACRO(RTLSDR_APPEND_SRCS)
2121
LIST(APPEND rtlsdr_srcs ${ARGV})
2222
ENDMACRO(RTLSDR_APPEND_SRCS)
2323

24-
if(!WIN32)
24+
if(NOT WIN32)
2525
RTLSDR_APPEND_SRCS(
2626
librtlsdr.c
2727
tuner_e4k.c
@@ -105,7 +105,7 @@ add_executable(rtl_ir rtl_ir.c)
105105
add_executable(rtl_eeprom rtl_eeprom.c)
106106
add_executable(rtl_adsb rtl_adsb.c)
107107
add_executable(rtl_power rtl_power.c)
108-
if (!WIN32)
108+
if (NOT WIN32)
109109
add_executable(rtl_rpcd rtl_rpcd.c rtlsdr_rpc_msg.c)
110110
set(INSTALL_TARGETS rtlsdr_shared rtlsdr_static rtl_sdr rtl_tcp rtl_test rtl_fm rtl_ir rtl_eeprom rtl_adsb rtl_power rtl_rpcd)
111111
else()
@@ -144,7 +144,7 @@ target_link_libraries(rtl_power rtlsdr_shared convenience_static
144144
${LIBUSB_LIBRARIES}
145145
${CMAKE_THREAD_LIBS_INIT}
146146
)
147-
if(!WIN32)
147+
if(NOT WIN32)
148148
target_link_libraries(rtl_rpcd rtlsdr_shared convenience_static
149149
${LIBUSB_LIBRARIES}
150150
${CMAKE_THREAD_LIBS_INIT}

0 commit comments

Comments
 (0)