mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-24 02:50:36 -08:00
23 lines
438 B
Prolog
23 lines
438 B
Prolog
QT += gui quick
|
|
TEMPLATE = lib
|
|
CONFIG += 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
|
|
|
|
linux {
|
|
LIBS += -L../../../platforms/linux/lib
|
|
}
|
|
|
|
macx {
|
|
LIBS += -L../../../platforms/macos/lib
|
|
}
|
|
|
|
QMAKE_CXXFLAGS += -std=c++17
|