EQL5/my_app
2016-12-29 20:43:49 +01:00
..
lisp port of EQL/Qt4 to Qt5 2016-11-25 23:30:38 +01:00
eql-lrelease port of EQL/Qt4 to Qt5 2016-11-25 23:30:38 +01:00
eql-lrelease.bat port of EQL/Qt4 to Qt5 2016-11-25 23:30:38 +01:00
eql-lupdate port of EQL/Qt4 to Qt5 2016-11-25 23:30:38 +01:00
eql-lupdate.bat port of EQL/Qt4 to Qt5 2016-11-25 23:30:38 +01:00
main.cpp [Windows] "my_app/": prevent crash of gui exe on print output 2016-12-29 20:43:49 +01:00
make.lisp port of EQL/Qt4 to Qt5 2016-11-25 23:30:38 +01:00
my_app.pro some revisions 2016-12-29 17:07:48 +01:00
README.txt add missing module classes; add example "storage-info.lisp"; some revisions; 2016-12-28 10:27:27 +01:00
tr.lisp port of EQL/Qt4 to Qt5 2016-11-25 23:30:38 +01:00

HOWTO
=====


Prepare:

  - in "make.lisp", add all of your lisp files to *lisp-files* (see "lisp/")

  - adapt main.cpp (translations, initial Lisp form to evaluate, package name).


Build:
  
  remove "tmp/" (if present)

  eql5 make
  qmake
  make      (MSVC: nmake)


  Now you should find a "my_app" executable.


Notes:

  [Windows]
  
    You need to make sure to never use printing to *standard-output*,
    as this would crash your GUI application (without a console).
    If you experience unexpected crashes of your EXE, add:

      CONFIG += console
  
    to your *.pro file, in order to see eventual console output.