Airspy HF: added missing files to the libairspyhf built in libary cmake file

pull/136/head
f4exb 2018-01-26 03:00:10 +01:00
rodzic cc1033b3c5
commit ba4d9ec0ca
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -5,12 +5,14 @@ find_package(LibUSB)
set(airspyhf_SOURCES
${LIBAIRSPYHFSRC}/libairspyhf/src/airspyhf.c
${LIBAIRSPYHFSRC}/libairspyhf/src/iqbalancer.c
${LIBAIRSPYHFSRC}/libairspyhf/src/iqconverter_int16.c
)
set(airspyhf_HEADERS
${LIBAIRSPYHFSRC}/libairspyhf/src/airspyhf.h
${LIBAIRSPYHFSRC}/libairspyhf/src/airspyhf_commands.h
${LIBAIRSPYHFSRC}/libairspyhf/src/iqbalancer.h
${LIBAIRSPYHFSRC}/libairspyhf/src/iqconverter_int16.h
)
include_directories(

Wyświetl plik

@ -139,5 +139,4 @@ void FileRecord::readHeader(std::ifstream& sampleFile, Header& header)
if ((header.sampleSize != 16) && (header.sampleSize != 24)) { // assume 16 bits if garbage (old I/Q file)
header.sampleSize = 16;
}
qDebug("FileRecord::readHeader: sampleSize: %u", header.sampleSize);
}