kierangrant / cl-qt-example

Example LISP Qt Application

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simple example to build a LISP Qt program.

Steps to build:

./build.sh
mkdir build && cd build
qmake ../QtUI
make -j
cd ..
ln -s build/libQtUI.so

To Run:

./cl-qt-example

Or on Windows

./build.sh
mkdir build && cd build
/path/to/Qt/qmake.exe ../QtUI
make -j
cd ..
mkdir ouput && cd output
cp ../build/release/QtUI.dll .
cp ../cl-qt-example.exe .
/path/to/Qt/windeployqt.exe QtUI.dll

Then to Run:

./cl-qt-example.exe

About

Example LISP Qt Application


Languages

Language:Common Lisp 50.6%Language:C++ 39.1%Language:QMake 10.0%Language:Shell 0.3%