summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/core.cbp50
-rw-r--r--core/main.cpp16
2 files changed, 66 insertions, 0 deletions
diff --git a/core/core.cbp b/core/core.cbp
new file mode 100644
index 0000000..f4eeb66
--- /dev/null
+++ b/core/core.cbp
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
+<CodeBlocks_project_file>
+ <FileVersion major="1" minor="6" />
+ <Project>
+ <Option title="core" />
+ <Option pch_mode="2" />
+ <Option compiler="gcc" />
+ <Build>
+ <Target title="Debug">
+ <Option output="bin/Debug/core" prefix_auto="1" extension_auto="1" />
+ <Option object_output="obj/Debug/" />
+ <Option type="0" />
+ <Option compiler="gcc" />
+ <Option projectLinkerOptionsRelation="2" />
+ <Compiler>
+ <Add option="-g" />
+ <Add option="`wx-config --version=2.8 --static=yes --unicode=yes --debug=yes --cflags`" />
+ </Compiler>
+ <Linker>
+ <Add option="`wx-config --version=2.8 --static=yes --unicode=yes --debug=yes --libs`" />
+ </Linker>
+ </Target>
+ <Target title="Release">
+ <Option output="bin/Release/core" prefix_auto="1" extension_auto="1" />
+ <Option object_output="obj/Release/" />
+ <Option type="0" />
+ <Option compiler="gcc" />
+ <Option projectLinkerOptionsRelation="2" />
+ <Compiler>
+ <Add option="-O2" />
+ <Add option="`wx-config --unicode=yes --debug=no --cflags`" />
+ </Compiler>
+ <Linker>
+ <Add option="-s" />
+ <Add option="`wx-config --unicode=yes --debug=no --libs`" />
+ </Linker>
+ </Target>
+ </Build>
+ <Compiler>
+ <Add option="-Wall" />
+ </Compiler>
+ <Unit filename="main.cpp" />
+ <Extensions>
+ <envvars />
+ <code_completion />
+ <debugger />
+ <lib_finder disable_auto="1" />
+ </Extensions>
+ </Project>
+</CodeBlocks_project_file>
diff --git a/core/main.cpp b/core/main.cpp
new file mode 100644
index 0000000..cd47654
--- /dev/null
+++ b/core/main.cpp
@@ -0,0 +1,16 @@
+// For compilers that support precompilation, includes "wx.h".
+#include <wx/wxprec.h>
+
+#ifdef __BORLANDC__
+#pragma hdrstop
+#endif
+
+#ifndef WX_PRECOMP
+// Include your minimal set of headers here, or wx.h
+#include <wx/wx.h>
+#endif
+
+int main()
+{
+ return 0;
+}