mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-04 16:01:14 -05:00
20 lines
426 B
Prolog
20 lines
426 B
Prolog
|
#--------------------------------------------------------
|
||
|
#
|
||
|
# Pro file for Android and Windows builds with Qt Creator
|
||
|
#
|
||
|
#--------------------------------------------------------
|
||
|
|
||
|
QT += core
|
||
|
|
||
|
TEMPLATE = lib
|
||
|
TARGET = libmirisdr
|
||
|
|
||
|
macx {
|
||
|
INCLUDEPATH += "/opt/local/include"
|
||
|
INCLUDEPATH += "/usr/local/include"
|
||
|
SOURCES =
|
||
|
HEADERS =
|
||
|
LIBS += -L/usr/local/lib -lmirisdr
|
||
|
LIBS += -L/opt/local/lib -lusb-1.0
|
||
|
}
|