fixed linux build bug

This commit is contained in:
Ryzerth
2020-12-22 20:00:51 +01:00
parent 4a86d6073c
commit d5c0fdd525
39 changed files with 675 additions and 20 deletions

View File

@ -23,9 +23,9 @@ if (MSVC)
else (MSVC)
find_package(PkgConfig)
pkg_check_modules(SOAPY REQUIRED airspyhf)
pkg_check_modules(SOAPY REQUIRED libairspyhf)
target_include_directories(airspyhf_source PUBLIC ${AIRSPYHF_INCLUDE_DIRS})
target_include_directories(airspyhf_source PUBLIC ${LIBAIRSPYHF_INCLUDE_DIRS})
target_link_directories(airspyhf_source PUBLIC ${AIRSPYHF_LIBRARY_DIRS})
target_link_libraries(airspyhf_source PUBLIC ${AIRSPYHF_LIBRARIES})
target_link_libraries(airspyhf_source PUBLIC ${LIBAIRSPYHF_LIBRARIES})
endif (MSVC)

View File

@ -1,6 +1,6 @@
#include <imgui.h>
#include <spdlog/spdlog.h>
#include <new_module.h>
#include <module.h>
#include <gui/gui.h>
#include <signal_path/signal_path.h>
#include <core.h>