EQL5/my_app
2017-04-30 22:58:45 +02: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 unix: add "make install" option for exe, lib, modules (refactor file locations) 2017-04-28 12:05:59 +02:00
make.lisp port of EQL/Qt4 to Qt5 2016-11-25 23:30:38 +01:00
my_app.pro small revisions 2017-04-30 22:58:45 +02:00
README.txt update README in my_app/ 2017-04-24 10:27:58 +02: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]

    Please note function

      eql.ignoreIOStreams();

    in main.cpp, as printing to *standard-output* would crash your GUI
    application.