Skip to content

Commit c418178

Browse files
committed
Restructure project to mimic ImGui layout.
1 parent 2d5864d commit c418178

File tree

99 files changed

+327
-382
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+327
-382
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
.build*
44
.DS_Store
55
bin
6-
Build
6+
[Bb]uild
77
*.VC.db
88
*.VC.opendb
99
*.user

.travis.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,24 @@ language: cpp
33
compiler:
44
- gcc
55
- clang
6-
6+
77
os:
88
- linux
99
- osx
10-
10+
1111
dist: xenial
1212

1313
addons:
1414
apt:
1515
sources:
16-
- ubuntu-toolchain-r-test
16+
- ubuntu-toolchain-r-test
1717
packages:
1818
- cmake
19-
19+
2020
cache:
2121
directories:
2222
- /usr/local/Homebrew
23-
23+
2424
before_install:
2525
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
2626
sudo apt-get install libglfw3-dev libglfw3;
@@ -30,11 +30,11 @@ before_install:
3030
brew update;
3131
brew install glfw3;
3232
fi
33-
33+
3434
- cmake --version
3535

3636
before_script:
37-
- cmake -H. -BBuild
37+
- cmake -Hexamples -Bbuild
3838

3939
script:
40-
- cmake --build Build --config Release
40+
- cmake --build build --config Release

CMakeLists.txt

-21
This file was deleted.

Examples/BasicInteraction/CMakeLists.txt

-3
This file was deleted.

Examples/Blueprints/CMakeLists.txt

-9
This file was deleted.

Examples/CMakeLists.txt

-80
This file was deleted.

Examples/Canvas/CMakeLists.txt

-5
This file was deleted.

Examples/Simple/CMakeLists.txt

-3
This file was deleted.

NodeEditor/CMakeLists.txt

-40
This file was deleted.

Screenshots/00-Simple.png

-8.87 KB
Binary file not shown.

Screenshots/node_editor_overview.gif

-9.07 MB
Binary file not shown.

Support/CMakeModules/Findimgui_node_editor.cmake

-18
This file was deleted.

Support/ImGui.natvis

-118
This file was deleted.

appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ before_build:
3333
- cmd: >-
3434
cmake --version
3535
36-
cmake -H. -BBuild -G %generator% -A %arch%
36+
cmake -Hexamples -Bbuild -G %generator% -A %arch%
3737
build:
38-
project: Build\ALL_BUILD.vcxproj
38+
project: build\ALL_BUILD.vcxproj
3939
parallel: true
4040
verbosity: minimal
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)