30 lines
913 B
CMake
30 lines
913 B
CMake
|
include(FetchContent)
|
||
|
FetchContent_Declare(
|
||
|
imgui
|
||
|
GIT_REPOSITORY https://github.com/YimMenu/imgui.git
|
||
|
GIT_TAG a241dc7990b631fde6575771173c2442d43d2812
|
||
|
GIT_PROGRESS TRUE
|
||
|
)
|
||
|
message("ImGui")
|
||
|
FetchContent_GetProperties(imgui)
|
||
|
if(NOT imgui_POPULATED)
|
||
|
FetchContent_Populate(imgui)
|
||
|
|
||
|
file(GLOB SRC_IMGUI
|
||
|
"${imgui_SOURCE_DIR}/*.cpp"
|
||
|
"${imgui_SOURCE_DIR}/*.h"
|
||
|
"${imgui_SOURCE_DIR}/backends/imgui_impl_win32.*"
|
||
|
"${imgui_SOURCE_DIR}/backends/imgui_impl_dx11.*"
|
||
|
"${imgui_SOURCE_DIR}/misc/cpp/imgui_stdlib.*"
|
||
|
)
|
||
|
|
||
|
add_library(imgui STATIC ${SRC_IMGUI})
|
||
|
source_group(TREE ${imgui_SOURCE_DIR} PREFIX "imgui" FILES ${SRC_IMGUI} )
|
||
|
target_include_directories(imgui PRIVATE
|
||
|
"${imgui_SOURCE_DIR}"
|
||
|
"${imgui_SOURCE_DIR}/backends"
|
||
|
"${imgui_SOURCE_DIR}/misc/cpp"
|
||
|
)
|
||
|
endif()
|
||
|
set_property(TARGET imgui PROPERTY CXX_STANDARD 23)
|