revisions

This commit is contained in:
pls.153 2022-02-14 13:23:59 +01:00
parent 822bbbfaa3
commit 8008fadb39
6 changed files with 12 additions and 11 deletions

View file

@ -45,9 +45,10 @@
(defvar *asdf-system* "app")
(defvar *ql-libs* (cc *current* "/ql-libs.lisp"))
(defvar *init-name* "ini_app")
(defvar *library-name* (cc *current* (format nil "/build-~A/tmp/app"
#+android "android"
#+ios "ios")))
(defvar *library-name* (format nil "~A/build-~A/tmp/app"
*current*
#+android "android"
#+ios "ios"))
(defvar *epilogue-code* nil)
(load "platforms/shared/make"))

View file

@ -1,5 +1,5 @@
#include "lqml.h"
#include "qml.h"
#include "qml_ext.h"
#include "ecl_ext.h"
#include <iostream>
#include <QCoreApplication>

View file

@ -1,4 +1,4 @@
#include "qml.h"
#include "qml_ext.h"
#include "lqml.h"
#include "ecl_fun.h"

View file

@ -1,5 +1,5 @@
#ifndef QML_H
#define QML_H
#ifndef QML_EXT_H
#define QML_EXT_H
#include <QtQml>

View file

@ -32,16 +32,16 @@ ios {
HEADERS += \
cpp/marshal.h \
cpp/ecl_ext.h \
cpp/qml_ext.h \
cpp/lqml.h \
cpp/qml.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/qml.cpp \
cpp/qt_ecl.cpp \
cpp/single_shot.cpp

View file

@ -24,16 +24,16 @@ INSTALLS = target
HEADERS += \
cpp/marshal.h \
cpp/ecl_ext.h \
cpp/qml_ext.h \
cpp/lqml.h \
cpp/qml.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/qml.cpp \
cpp/qt_ecl.cpp \
cpp/single_shot.cpp \
cpp/main.cpp