Skip to content

Commit 74589ec

Browse files
committed
1. remove extra imgui submodule
2. add imgui base code into project, also add some depend UI weigets 3. update immidi version to 1.1.0
1 parent 3e412a9 commit 74589ec

File tree

195 files changed

+479114
-38
lines changed

Some content is hidden

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

195 files changed

+479114
-38
lines changed

.gitmodules

-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
[submodule "imgui"]
2-
path = imgui
3-
url = ../imgui.git

CMakeLists.txt

+3-10
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ option(USE_STATIC "Set to ON to build Static Library" OFF)
66
option(USE_IMGUI "Set to ON to build with imgui test" ON)
77

88
set(PROJECT_VER_MAJOR 1)
9-
set(PROJECT_VER_MINOR 0)
10-
set(PROJECT_VER_PATCH 3)
9+
set(PROJECT_VER_MINOR 1)
10+
set(PROJECT_VER_PATCH 0)
1111
set(PROJECT_VER "${PROJECT_VER_MAJOR}.${PROJECT_VER_MINOR}.${PROJECT_VER_PATCH}")
1212

1313
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-deprecated-declarations -Wno-writable-strings")
@@ -76,14 +76,6 @@ set_target_properties(
7676
LIBRARY_OUTPUT_DIRECTORY "${FRAMEWORKS_PATH}"
7777
RUNTIME_OUTPUT_DIRECTORY "${FRAMEWORKS_PATH}"
7878
)
79-
if(IMGUI_VULKAN_SHADER)
80-
set_target_properties(
81-
VkShader
82-
PROPERTIES
83-
LIBRARY_OUTPUT_DIRECTORY "${FRAMEWORKS_PATH}"
84-
RUNTIME_OUTPUT_DIRECTORY "${FRAMEWORKS_PATH}"
85-
)
86-
endif(IMGUI_VULKAN_SHADER)
8779

8880
include_directories(
8981
${IMGUI_INCLUDE_DIRS}
@@ -106,6 +98,7 @@ add_executable(
10698
immidi
10799
MACOSX_BUNDLE
108100
test/immidi.cpp
101+
test/ImGuiFileDialog.cpp
109102
${IMGUI_APP_ENTRY_SRC}
110103
${MACOSX_BUNDLE_ICON_FILE}
111104
)

imgui

-1
This file was deleted.

0 commit comments

Comments
 (0)