Fixed cmake bug that prevented hackrf_sweep from being built.

This commit is contained in:
Michael Ossmann
2017-01-29 17:29:45 -07:00
parent 4363144366
commit 980abca0b5

View File

@ -25,16 +25,6 @@ set(INSTALL_DEFAULT_BINDIR "bin" CACHE STRING "Appended to CMAKE_INSTALL_PREFIX"
INCLUDE(FindPkgConfig)
if(MSVC)
add_library(libgetopt_static STATIC
../getopt/getopt.c
)
else()
pkg_check_modules(FFTW REQUIRED fftw3f)
LIST(APPEND TOOLS hackrf_sweep)
LIST(APPEND TOOLS_LINK_LIBS m fftw3f)
endif()
SET(TOOLS
hackrf_max2837
hackrf_si5351c
@ -46,6 +36,16 @@ SET(TOOLS
hackrf_operacake
)
if(MSVC)
add_library(libgetopt_static STATIC
../getopt/getopt.c
)
else()
pkg_check_modules(FFTW REQUIRED fftw3f)
LIST(APPEND TOOLS hackrf_sweep)
LIST(APPEND TOOLS_LINK_LIBS m fftw3f)
endif()
if(NOT libhackrf_SOURCE_DIR)
include_directories(${LIBHACKRF_INCLUDE_DIR})
LIST(APPEND TOOLS_LINK_LIBS ${LIBHACKRF_LIBRARIES})