diff options
author | deva <deva> | 2008-05-29 14:59:00 +0000 |
---|---|---|
committer | deva <deva> | 2008-05-29 14:59:00 +0000 |
commit | 57a06611188676a76111687fd3aec485260f4b58 (patch) | |
tree | 68177e17bffc780547b1a14a25e8044079dc1003 /client/client.pro | |
parent | 321d81bbcb950d3bcbe41b845802b3fd3bd13618 (diff) |
Added initial LUA code.
Diffstat (limited to 'client/client.pro')
-rw-r--r-- | client/client.pro | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/client/client.pro b/client/client.pro index 5e15f48..28c9af1 100644 --- a/client/client.pro +++ b/client/client.pro @@ -8,8 +8,17 @@ DEPENDPATH += . widgets INCLUDEPATH += . widgets QT += core gui network xml +win32 { + LIBS += -llua51 +} + +unix { + LIBS += -llua +} + HEADERS += \ builder.h \ + lua.h \ macro.h \ sendrecieve.h \ widgets.h \ @@ -30,6 +39,7 @@ HEADERS += \ SOURCES += \ pracro.cc \ builder.cc \ + lua.cc \ macro.cc \ sendrecieve.cc \ widgets/widget.cc \ |