Skip to content

update for new imgui version #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,17 @@ endif()

set(BINFOLDER ${CMAKE_INSTALL_PREFIX}/bin)
configure_file(resources/scriptpanel.desktop.in scriptpanel.desktop)

add_executable(scriptpanel
src/main.cpp imgui/examples/imgui_impl_glfw.cpp imgui/examples/imgui_impl_opengl3.cpp
imgui/examples/libs/gl3w/GL/gl3w.c imgui/imgui.cpp imgui/imgui_draw.cpp imgui/imgui_widgets.cpp
)
include_directories(imgui/backends)
include_directories(include)
add_executable(scriptpanel src/main.cpp
imgui/imgui.cpp
imgui/imgui_draw.cpp
imgui/imgui_widgets.cpp
imgui/imgui_tables.cpp
imgui/backends/imgui_impl_glfw.cpp
imgui/backends/imgui_impl_opengl3.cpp
include/GL/gl3w.c
)
target_include_directories(scriptpanel
PUBLIC imgui
PUBLIC imgui/examples
Expand Down
2 changes: 1 addition & 1 deletion imgui
Submodule imgui updated 249 files
Loading