xo-umbrella2/xo-imgui/example/ex4/CMakeLists.txt
Roland Conybeare 78270fd946 git subrepo clone (merge) git@github.com:Rconybea/xo-imgui.git xo-imgui
subrepo:
  subdir:   "xo-imgui"
  merged:   "b2926d26"
upstream:
  origin:   "git@github.com:Rconybea/xo-imgui.git"
  branch:   "main"
  commit:   "b2926d26"
git-subrepo:
  version:  "0.4.9"
  origin:   "???"
  commit:   "???"
2026-06-06 22:12:22 -04:00

21 lines
659 B
CMake

if (XO_ENABLE_EXAMPLES)
if (XO_ENABLE_VULKAN)
# target executable
set(SELF_EXE imgui_ex4)
add_executable(${SELF_EXE} imgui_ex4.cpp
AppState.cpp
DrawState.cpp
GcStateDescription.cpp
AnimateGcCopyCb.cpp
GenerationLayout.cpp
)
xo_include_options2(${SELF_EXE})
xo_self_dependency(${SELF_EXE} xo_imgui)
xo_dependency(${SELF_EXE} xo_object)
xo_dependency(${SELF_EXE} randomgen)
xo_dependency(${SELF_EXE} xo_flatstring)
xo_dependency(${SELF_EXE} xo_alloc)
xo_dependency(${SELF_EXE} indentlog)
endif()
endif()