mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 10:31:34 -08:00
24 lines
462 B
Prolog
24 lines
462 B
Prolog
QT += widgets
|
|
TEMPLATE = lib
|
|
CONFIG += plugin release no_keywords
|
|
LIBS += -L/usr/local/lib -lecl
|
|
DESTDIR = ../
|
|
TARGET = cpp
|
|
OBJECTS_DIR = ./tmp/
|
|
MOC_DIR = ./tmp/
|
|
|
|
win32 {
|
|
include(../../src/windows.pri)
|
|
}
|
|
|
|
# 'marshal.*' and 'qt_ecl.*' only needed for calling Lisp
|
|
|
|
HEADERS += \
|
|
lib.h \
|
|
../../src/cpp/marshal.h \
|
|
../../src/cpp/qt_ecl.h
|
|
|
|
SOURCES += \
|
|
lib.cpp \
|
|
../../src/cpp/marshal.cpp \
|
|
../../src/cpp/qt_ecl.cpp
|