aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/GuiLua/skang.c
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-04-22 15:13:38 +1000
committerDavid Walter Seikel2014-04-22 15:13:38 +1000
commitdd009ccdfd62f9153dbc72f5f5de5d5f72979690 (patch)
tree50d62438c6d47dccf82f440986919b1ed3edbbd9 /src/GuiLua/skang.c
parentMove most of the README's and other docs into the new docs directory. (diff)
downloadSledjHamr-dd009ccdfd62f9153dbc72f5f5de5d5f72979690.zip
SledjHamr-dd009ccdfd62f9153dbc72f5f5de5d5f72979690.tar.gz
SledjHamr-dd009ccdfd62f9153dbc72f5f5de5d5f72979690.tar.bz2
SledjHamr-dd009ccdfd62f9153dbc72f5f5de5d5f72979690.tar.xz
Move all source into the new src directory, and shuffle a few other things around.
Diffstat (limited to 'src/GuiLua/skang.c')
-rw-r--r--src/GuiLua/skang.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/GuiLua/skang.c b/src/GuiLua/skang.c
new file mode 100644
index 0000000..facc239
--- /dev/null
+++ b/src/GuiLua/skang.c
@@ -0,0 +1,16 @@
1#include "GuiLua.h"
2
3
4EAPI_MAIN int elm_main(int argc, char **argv)
5{
6 elm_app_compile_bin_dir_set(PACKAGE_BIN_DIR);
7 elm_app_compile_data_dir_set(PACKAGE_DATA_DIR);
8 elm_app_compile_lib_dir_set(PACKAGE_LIB_DIR);
9 elm_app_info_set(elm_main, "GuiLua", "skang.lua");
10
11 GuiLuaDo(argc, argv);
12
13 return 0;
14}
15
16ELM_MAIN()