mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-02-22 05:28:32 -05:00
Project files with MacOS clang RPATH to use proper paths for shared objects. Minor path updates in favor of loading plugin libs. Deployment script packaging using Qt way(macdeployqt).
31 lines
826 B
Prolog
31 lines
826 B
Prolog
#--------------------------------------------
|
|
#
|
|
# Pro file for Windows build with Qt Creator
|
|
#
|
|
#--------------------------------------------
|
|
|
|
QT += core
|
|
|
|
TEMPLATE = lib
|
|
TARGET = fcdlib
|
|
|
|
CONFIG(MINGW32):INCLUDEPATH += "C:\softs\libusb-1.0.22\include"
|
|
CONFIG(MINGW64):INCLUDEPATH += "C:\softs\libusb-1.0.22\include"
|
|
CONFIG(MSVC):INCLUDEPATH += "C:\softs\libusb-1.0.22\include"
|
|
|
|
SOURCES = $$PWD/fcdtraits.cpp\
|
|
$$PWD/fcdproplusconst.cpp\
|
|
$$PWD/fcdproconst.cpp
|
|
|
|
HEADERS = $$PWD/fcdtraits.h\
|
|
$$PWD/fcdproplusconst.h\
|
|
$$PWD/fcdproconst.h
|
|
|
|
CONFIG(MINGW32):LIBS += -LC:\softs\libusb-1.0.22\MinGW32\dll -llibusb-1.0
|
|
CONFIG(MINGW64):LIBS += -LC:\softs\libusb-1.0.22\MinGW64\dll -llibusb-1.0
|
|
CONFIG(MSVC):LIBS += -LC:\softs\libusb-1.0.22\MS64\dll -llibusb-1.0
|
|
|
|
macx {
|
|
QMAKE_LFLAGS_SONAME = -Wl,-install_name,@rpath/
|
|
}
|