Skip to content

Commit 3d65679

Browse files
committed
Cleanup.
1 parent ca3898e commit 3d65679

61 files changed

Lines changed: 340 additions & 1631 deletions

Some content is hidden

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

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.vs
2+
.build
23
bin
34
*.VC.db
45
*.VC.opendb

CMakeLists.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
cmake_minimum_required(VERSION 3.8)
2+
project(ImGuiNodeEditor)
3+
4+
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
5+
6+
set(CMAKE_CXX_STANDARD 17)
7+
set(CMAKE_CXX_STANDARD_REQUIRED YES)
8+
9+
if (DEFINED MSVC_VERSION AND (NOT (${MSVC_VERSION} LESS 1400)))
10+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /std:c++17")# /permissive-")
11+
endif()
12+
13+
14+
add_subdirectory(ThirdParty/ImGui)
15+
add_subdirectory(ThirdParty/picojson)
16+
add_subdirectory(ThirdParty/stb_image)
17+
18+
add_subdirectory(NodeEditor)
19+
20+
add_subdirectory(Examples)

Editor/Application/application.h

Lines changed: 0 additions & 5 deletions
This file was deleted.

Editor/Configuration.props

Lines changed: 0 additions & 62 deletions
This file was deleted.

Editor/Editor.vcxproj

Lines changed: 0 additions & 231 deletions
This file was deleted.

0 commit comments

Comments
 (0)