adapt 'my_app' to new install path; small revisions;

This commit is contained in:
polos 2021-03-27 09:44:04 +01:00
parent 8fd473b5a2
commit 7b19fd33dd
3 changed files with 3 additions and 3 deletions

View file

@ -19,7 +19,7 @@ int catch_all_qexec() {
int main(int argc, char** argv) {
EQL::ini(argv); // best initialized here
//EQL::ini(argc, argv); // obsolete, was needed on some OS years ago
QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts); // for Qt WebEngine
QApplication qapp(argc, argv);

View file

@ -2,7 +2,7 @@ QT += widgets printsupport uitools
TEMPLATE = app
CONFIG += no_keywords release
INCLUDEPATH += /usr/local/include
LIBS += -lecl -L. -lmy_app_lib -L/usr/local/lib -leql5
LIBS += -L/usr/local/lib -lecl -L$$[QT_INSTALL_LIBS] -leql5 -L. -lmy_app_lib
TARGET = my_app
DESTDIR = ./
OBJECTS_DIR = ./tmp/

View file

@ -3029,7 +3029,7 @@ QVariantList lispToQVariantList(cl_object l_list) {
return l; }
cl_object qjs_call(cl_object l_item, cl_object l_name, cl_object l_args) {
// direct, fast JS calls, see 'qml-lisp' in QML examples
// direct, fast JS calls, see 'lisp/qml.lisp'
// max. 10 arguments
// supported argument types: T, NIL, INTEGER, FLOAT, STRING, (nested) LIST of mentioned arguments
ecl_process_env()->nvalues = 1;