aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/GuiLua/skang.c
diff options
context:
space:
mode:
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()