mirror of
https://gitlab.com/eql/EQL5.git
synced 2026-05-30 15:22:00 -07:00
extend "my_app/" template for use with ASDF and dependencies (loaded via Quicklisp)
This commit is contained in:
parent
2814efdfaf
commit
c87cf7910c
11 changed files with 99 additions and 30 deletions
|
|
@ -7,7 +7,8 @@
|
|||
#include <QSettings>
|
||||
#include <QTranslator>
|
||||
|
||||
extern "C" void ini_app(cl_object);
|
||||
// adapt "MY_APP" (here: from "my-app.asd")
|
||||
extern "C" void init_lib_MY_APP__ALL_SYSTEMS(cl_object);
|
||||
|
||||
int catch_all_qexec() {
|
||||
int ret = 0;
|
||||
|
|
@ -43,8 +44,7 @@ int main(int argc, char** argv) {
|
|||
eql.ignoreIOStreams();
|
||||
#endif
|
||||
|
||||
eql.exec(ini_app, // see make.lisp
|
||||
"(start)", // initial form to be evaluated (optional)
|
||||
"example"); // package name (optional)
|
||||
// adapt "MY_APP" (here: from "my-app.asd")
|
||||
eql.exec(init_lib_MY_APP__ALL_SYSTEMS);
|
||||
|
||||
return catch_all_qexec(); } // closing the main/last window will quit the program
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue