mirror of
https://gitlab.com/eql/lqml.git
synced 2026-01-24 21:40:48 -08:00
80 lines
1.4 KiB
Prolog
80 lines
1.4 KiB
Prolog
QT += quick qml
|
|
TEMPLATE = lib
|
|
CONFIG += c++17 staticlib no_keywords release
|
|
LIBS = -L/usr/local/lib -lecl
|
|
OBJECTS_DIR = ./tmp
|
|
MOC_DIR = ./tmp
|
|
|
|
32bit {
|
|
TARGET = lqml32
|
|
} else {
|
|
TARGET = lqml
|
|
}
|
|
|
|
linux {
|
|
INCLUDEPATH = /usr/local/include
|
|
DESTDIR = ../../platforms/linux/lib
|
|
}
|
|
|
|
macx {
|
|
INCLUDEPATH = /usr/local/include
|
|
DESTDIR = ../../platforms/macos/lib
|
|
}
|
|
|
|
win32 {
|
|
include(windows.pri)
|
|
|
|
DESTDIR = ../../platforms/windows/lib
|
|
}
|
|
|
|
android {
|
|
32bit {
|
|
ECL = $$(ECL_ANDROID_32)
|
|
} else {
|
|
ECL = $$(ECL_ANDROID)
|
|
}
|
|
QT += androidextras
|
|
INCLUDEPATH = $$ECL/include
|
|
LIBS = -L$$ECL/lib -lecl
|
|
DESTDIR = ../../platforms/android/lib
|
|
|
|
32bit {
|
|
ANDROID_ABIS = "armeabi-v7a"
|
|
} else {
|
|
ANDROID_ABIS = "arm64-v8a"
|
|
}
|
|
}
|
|
|
|
ios {
|
|
INCLUDEPATH = $$(ECL_IOS)/include
|
|
LIBS = -L$$(ECL_IOS)/lib -lecl
|
|
DESTDIR = ../../platforms/ios/lib
|
|
}
|
|
|
|
HEADERS += \
|
|
cpp/marshal.h \
|
|
cpp/ecl_ext.h \
|
|
cpp/qml_ext.h \
|
|
cpp/lqml.h \
|
|
cpp/qt_ecl.h \
|
|
cpp/single_shot.h
|
|
|
|
SOURCES += \
|
|
cpp/marshal.cpp \
|
|
cpp/ecl_ext.cpp \
|
|
cpp/qml_ext.cpp \
|
|
cpp/lqml.cpp \
|
|
cpp/qt_ecl.cpp \
|
|
cpp/single_shot.cpp
|
|
|
|
# compile Lisp code
|
|
|
|
android {
|
|
QMAKE_POST_LINK = $$ECL/../ecl-android-host/bin/ecl \
|
|
-norc -shell $$PWD/make.lisp
|
|
} else:ios {
|
|
QMAKE_POST_LINK = ../../platforms/ios/cross-compile.sh ../make.lisp
|
|
} else {
|
|
QMAKE_POST_LINK = ecl -shell $$PWD/make.lisp
|
|
}
|
|
|