mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 15:53:57 +08:00
* first ignore
* init gps test
* make LimeGPS git clone
* revert ignore
* .
* remove prebuilt bins
* gps test v1
* add static signal gen script
* update readme
* remove LD_PRELOAD by using rpath, update values after testing
* .
* remove LD_PRELOAD
* .
* fix README
* .
* .
* .
* gps test v1
* cleanUp
* init
* update fuzzy tests
* .
* finalize qcom gps tests
* .
* .
* .
* add downloader
* finalize unit tests
* .
* .
* inc limeGPS startup time
* tmp
* loosen init time
* .
* .
* .
* add ublox warmstart test
* .
* improve location tests
* .
* .
* .
* .
* .
* .
* .
* .
* last cleanUp
* .
* .
* add hackrf support
* hackrf support
* .
* .
* .
* .
* .
* .
Co-authored-by: Kurt Nistelberger <kurt.nistelberger@gmail.com>
old-commit-hash: a48ec655ac
45 lines
1.1 KiB
Diff
45 lines
1.1 KiB
Diff
diff --git a/host/hackrf-tools/src/CMakeLists.txt b/host/hackrf-tools/src/CMakeLists.txt
|
|
index 7115151c..a51388ba 100644
|
|
--- a/host/hackrf-tools/src/CMakeLists.txt
|
|
+++ b/host/hackrf-tools/src/CMakeLists.txt
|
|
@@ -23,20 +23,20 @@
|
|
|
|
set(INSTALL_DEFAULT_BINDIR "bin" CACHE STRING "Appended to CMAKE_INSTALL_PREFIX")
|
|
|
|
-find_package(FFTW REQUIRED)
|
|
-include_directories(${FFTW_INCLUDES})
|
|
-get_filename_component(FFTW_LIBRARY_DIRS ${FFTW_LIBRARIES} DIRECTORY)
|
|
-link_directories(${FFTW_LIBRARY_DIRS})
|
|
+#find_package(FFTW REQUIRED)
|
|
+#include_directories(${FFTW_INCLUDES})
|
|
+#get_filename_component(FFTW_LIBRARY_DIRS ${FFTW_LIBRARIES} DIRECTORY)
|
|
+#link_directories(${FFTW_LIBRARY_DIRS})
|
|
|
|
SET(TOOLS
|
|
hackrf_transfer
|
|
- hackrf_spiflash
|
|
- hackrf_cpldjtag
|
|
+ #hackrf_spiflash
|
|
+ #hackrf_cpldjtag
|
|
hackrf_info
|
|
- hackrf_debug
|
|
- hackrf_clock
|
|
- hackrf_sweep
|
|
- hackrf_operacake
|
|
+ #hackrf_debug
|
|
+ #hackrf_clock
|
|
+ #hackrf_sweep
|
|
+ #hackrf_operacake
|
|
)
|
|
|
|
if(MSVC)
|
|
@@ -45,7 +45,7 @@ if(MSVC)
|
|
)
|
|
LIST(APPEND TOOLS_LINK_LIBS ${FFTW_LIBRARIES})
|
|
else()
|
|
- LIST(APPEND TOOLS_LINK_LIBS m fftw3f)
|
|
+ LIST(APPEND TOOLS_LINK_LIBS m)# fftw3f)
|
|
endif()
|
|
|
|
if(NOT libhackrf_SOURCE_DIR)
|