mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 10:31:34 -08:00
33 lines
598 B
Prolog
33 lines
598 B
Prolog
QT += gui quick network
|
|
TEMPLATE = lib
|
|
CONFIG += c++17 plugin release no_keywords
|
|
DEFINES += PLUGIN
|
|
INCLUDEPATH = /usr/local/include ../../../src/cpp
|
|
LIBS = -L/usr/local/lib -lecl
|
|
DESTDIR = ./
|
|
TARGET = qt
|
|
OBJECTS_DIR = ./tmp/
|
|
MOC_DIR = ./tmp/
|
|
|
|
HEADERS += qt.h
|
|
SOURCES += qt.cpp
|
|
|
|
unix {
|
|
QT += serialport
|
|
HEADERS += usb/usb.h
|
|
SOURCES += usb/usb.cpp
|
|
}
|
|
|
|
linux {
|
|
LIBS += -L../../../platforms/linux/lib
|
|
}
|
|
|
|
macx {
|
|
LIBS += -L../../../platforms/macos/lib
|
|
}
|
|
|
|
win32 {
|
|
include(../../../src/windows.pri)
|
|
|
|
LIBS += -L../../../platforms/windows/lib
|
|
}
|