diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2010-10-13 05:25:52 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2010-10-13 05:25:52 +0300 |
commit | 0d4166dadd7d9404d42e04d57b71a595d8533ace (patch) | |
tree | 63740309e2799b99d9b5f2a87883884cf0e02d83 | |
parent | d3eadf6e0e63810fda540c87ee12964b010919f3 (diff) |
new file: core/core.cbp
new file: core/main.cpp
-rw-r--r-- | core/core.cbp | 50 | ||||
-rw-r--r-- | core/main.cpp | 16 |
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; +} |