mirror of
https://gitlab.com/eql/EQL5.git
synced 2026-01-10 11:11:34 -08:00
19 lines
385 B
Prolog
19 lines
385 B
Prolog
QT += widgets printsupport uitools
|
|
TEMPLATE = app
|
|
CONFIG += no_keywords release
|
|
INCLUDEPATH += /usr/local/include
|
|
LIBS += -L/usr/local/lib -lecl -L$$[QT_INSTALL_LIBS] -leql5
|
|
TARGET = test
|
|
DESTDIR = ./
|
|
OBJECTS_DIR = ./tmp/
|
|
MOC_DIR = ./tmp/
|
|
|
|
win32 {
|
|
include(../../src/windows.pri)
|
|
}
|
|
|
|
HEADERS += test.h
|
|
|
|
SOURCES += test.cpp \
|
|
main.cpp
|
|
|