forked from imgui-rs/imgui-rs
-
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.
Changes to build system to accomodate docking
- Loading branch information
Showing
9 changed files
with
76 additions
and
260 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 |
---|---|---|
|
@@ -25,3 +25,4 @@ pkg-config = { version="0.3", optional=true } | |
default = [] | ||
wasm = [] | ||
freetype = ["pkg-config"] | ||
docking = [] |
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
This file was deleted.
Oops, something went wrong.
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,16 @@ | ||
// This improves build speed by only compiling a single file, and performance by | ||
// allowing the optimizer to inline across separate object files (note that even | ||
// when rust is built with LTO, unless the steps are taken to allow cross-lang | ||
// LTO (tricky), the C/C++ code won't be LTOed). | ||
#include "./third-party/imgui-docking/imgui/imgui.cpp" | ||
#include "./third-party/imgui-docking/imgui/imgui_demo.cpp" | ||
#include "./third-party/imgui-docking/imgui/imgui_draw.cpp" | ||
#include "./third-party/imgui-docking/imgui/imgui_widgets.cpp" | ||
#include "./third-party/imgui-docking/imgui/imgui_tables.cpp" | ||
#include "./third-party/imgui-docking/cimgui.cpp" | ||
|
||
#ifdef IMGUI_ENABLE_FREETYPE | ||
#include "./third-party/imgui-docking/imgui/misc/freetype/imgui_freetype.cpp" | ||
#endif | ||
|
||
|
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,16 @@ | ||
// This improves build speed by only compiling a single file, and performance by | ||
// allowing the optimizer to inline across separate object files (note that even | ||
// when rust is built with LTO, unless the steps are taken to allow cross-lang | ||
// LTO (tricky), the C/C++ code won't be LTOed). | ||
#include "./third-party/imgui-master/imgui/imgui.cpp" | ||
#include "./third-party/imgui-master/imgui/imgui_demo.cpp" | ||
#include "./third-party/imgui-master/imgui/imgui_draw.cpp" | ||
#include "./third-party/imgui-master/imgui/imgui_widgets.cpp" | ||
#include "./third-party/imgui-master/imgui/imgui_tables.cpp" | ||
#include "./third-party/imgui-master/cimgui.cpp" | ||
|
||
#ifdef IMGUI_ENABLE_FREETYPE | ||
#include "./third-party/imgui-master/imgui/misc/freetype/imgui_freetype.cpp" | ||
#endif | ||
|
||
|
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
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
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
Oops, something went wrong.