forked from schorsch1976/AsciiFlowQT
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add a Code::Blocks cbp project, so that it can be built under msys2's…
… gcc and prebuilt wx 3.2.2.1 library
- Loading branch information
1 parent
3414159
commit 3fdadcd
Showing
2 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> | ||
<CodeBlocks_project_file> | ||
<FileVersion major="1" minor="6" /> | ||
<Project> | ||
<Option title="AsciiFlow" /> | ||
<Option pch_mode="2" /> | ||
<Option compiler="gcc" /> | ||
<Build> | ||
<Target title="Debug"> | ||
<Option output="bin/Debug/AsciiFlow" prefix_auto="1" extension_auto="1" /> | ||
<Option object_output="obj/Debug/" /> | ||
<Option type="0" /> | ||
<Option compiler="gcc" /> | ||
<Option projectLinkerOptionsRelation="2" /> | ||
<Compiler> | ||
<Add option="-g" /> | ||
</Compiler> | ||
</Target> | ||
<Target title="Release"> | ||
<Option output="bin/Release/AsciiFlow" prefix_auto="1" extension_auto="1" /> | ||
<Option object_output="obj/Release/" /> | ||
<Option type="0" /> | ||
<Option compiler="gcc" /> | ||
<Option projectLinkerOptionsRelation="2" /> | ||
<Compiler> | ||
<Add option="-O2" /> | ||
</Compiler> | ||
<Linker> | ||
<Add option="-s" /> | ||
</Linker> | ||
</Target> | ||
</Build> | ||
<Compiler> | ||
<Add option="-Wall" /> | ||
<Add option="-std=c++20" /> | ||
<Add option="`$(#WX_CONFIG) --cflags`" /> | ||
<Add directory="src/Common/include" /> | ||
<Add directory="F:/code/AsciiFlowQT/src/Common/include" /> | ||
</Compiler> | ||
<ResourceCompiler> | ||
<Add option="`$(#WX_CONFIG) --rcflags`" /> | ||
</ResourceCompiler> | ||
<Linker> | ||
<Add option="`$(#WX_CONFIG) --libs`" /> | ||
</Linker> | ||
<Unit filename="src/Common/AsciiArtData.cpp" /> | ||
<Unit filename="src/Common/IsPrint.cpp" /> | ||
<Unit filename="src/Common/Point.cpp" /> | ||
<Unit filename="src/Common/Rect.cpp" /> | ||
<Unit filename="src/Common/ToolArrow.cpp" /> | ||
<Unit filename="src/Common/ToolClass.cpp" /> | ||
<Unit filename="src/Common/ToolErase.cpp" /> | ||
<Unit filename="src/Common/ToolFreehand.cpp" /> | ||
<Unit filename="src/Common/ToolLine.cpp" /> | ||
<Unit filename="src/Common/ToolMove.cpp" /> | ||
<Unit filename="src/Common/ToolRectangle.cpp" /> | ||
<Unit filename="src/Common/ToolResize.cpp" /> | ||
<Unit filename="src/Common/ToolText.cpp" /> | ||
<Unit filename="src/Common/include/AsciiFlowCommon/AsciiArtData.h" /> | ||
<Unit filename="src/Common/include/AsciiFlowCommon/AsciiFlowCommonAPI.h" /> | ||
<Unit filename="src/Common/include/AsciiFlowCommon/ITool.h" /> | ||
<Unit filename="src/Common/include/AsciiFlowCommon/IsPrint.h" /> | ||
<Unit filename="src/Common/include/AsciiFlowCommon/KeyEvent.h" /> | ||
<Unit filename="src/Common/include/AsciiFlowCommon/Point.h" /> | ||
<Unit filename="src/Common/include/AsciiFlowCommon/Rect.h" /> | ||
<Unit filename="src/Common/include/AsciiFlowCommon/ToolArrow.h" /> | ||
<Unit filename="src/Common/include/AsciiFlowCommon/ToolClass.h" /> | ||
<Unit filename="src/Common/include/AsciiFlowCommon/ToolErase.h" /> | ||
<Unit filename="src/Common/include/AsciiFlowCommon/ToolFreehand.h" /> | ||
<Unit filename="src/Common/include/AsciiFlowCommon/ToolLine.h" /> | ||
<Unit filename="src/Common/include/AsciiFlowCommon/ToolMove.h" /> | ||
<Unit filename="src/Common/include/AsciiFlowCommon/ToolRectangle.h" /> | ||
<Unit filename="src/Common/include/AsciiFlowCommon/ToolResize.h" /> | ||
<Unit filename="src/Common/include/AsciiFlowCommon/ToolText.h" /> | ||
<Unit filename="src/Wx/AboutDialog.cpp" /> | ||
<Unit filename="src/Wx/AboutDialog.h" /> | ||
<Unit filename="src/Wx/App.cpp" /> | ||
<Unit filename="src/Wx/App.h" /> | ||
<Unit filename="src/Wx/ExportDialog.cpp" /> | ||
<Unit filename="src/Wx/ExportDialog.h" /> | ||
<Unit filename="src/Wx/ImportDialog.cpp" /> | ||
<Unit filename="src/Wx/ImportDialog.h" /> | ||
<Unit filename="src/Wx/MainFrame.cpp" /> | ||
<Unit filename="src/Wx/MainFrame.h" /> | ||
<Unit filename="src/Wx/PreferencesDialog.cpp" /> | ||
<Unit filename="src/Wx/PreferencesDialog.h" /> | ||
<Unit filename="src/Wx/main.cpp" /> | ||
<Unit filename="src/Wx/wxAsciiArt.cpp" /> | ||
<Unit filename="src/Wx/wxAsciiArt.h" /> | ||
<Extensions /> | ||
</Project> | ||
</CodeBlocks_project_file> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#pragma once | ||
|
||
#define AsciiFlowCommon_API | ||
|