mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-04 16:01:14 -05:00
27aab58d92
Updated qmake project configs. Deploy & Run script. For now only hardware supported is HackRF.
31 lines
781 B
Prolog
31 lines
781 B
Prolog
#--------------------------------------------------------
|
|
#
|
|
# Pro file for Windows builds with Qt Creator
|
|
#
|
|
#--------------------------------------------------------
|
|
|
|
QT += core
|
|
|
|
TEMPLATE = lib
|
|
TARGET = mbelib
|
|
|
|
CONFIG(MINGW32):LIBMBELIBSRC = "D:\softs\mbelib"
|
|
CONFIG(MINGW64):LIBMBELIBSRC = "D:\softs\mbelib"
|
|
CONFIG(macx):LIBMBELIBSRC = "../../deps/mbelib"
|
|
|
|
INCLUDEPATH += $$LIBMBELIBSRC
|
|
|
|
SOURCES = $$LIBMBELIBSRC/ambe3600x2400.c\
|
|
$$LIBMBELIBSRC/ambe3600x2450.c\
|
|
$$LIBMBELIBSRC/ecc.c\
|
|
$$LIBMBELIBSRC/imbe7100x4400.c\
|
|
$$LIBMBELIBSRC/imbe7200x4400.c\
|
|
$$LIBMBELIBSRC/mbelib.c
|
|
|
|
HEADERS = $$LIBMBELIBSRC/ambe3600x2400_const.h\
|
|
$$LIBMBELIBSRC/ambe3600x2450_const.h\
|
|
$$LIBMBELIBSRC/ecc_const.h\
|
|
$$LIBMBELIBSRC/imbe7200x4400_const.h\
|
|
$$LIBMBELIBSRC/mbelib.h\
|
|
$$LIBMBELIBSRC/mbelib_const.h
|