mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 10:31:34 -08:00
16 lines
318 B
Prolog
16 lines
318 B
Prolog
QT += widgets
|
|
TEMPLATE = lib
|
|
CONFIG += c++17 plugin release no_keywords
|
|
INCLUDEPATH = /usr/local/include
|
|
LIBS = -L/usr/local/lib -lecl
|
|
DESTDIR = ../
|
|
TARGET = cpp
|
|
OBJECTS_DIR = ./tmp/
|
|
MOC_DIR = ./tmp/
|
|
|
|
HEADERS += lib.h
|
|
SOURCES += lib.cpp
|
|
|
|
win32 {
|
|
include(../../src/windows.pri)
|
|
}
|