2024-03-08 21:32:48 +01:00
|
|
|
cmake_minimum_required(VERSION 3.24 FATAL_ERROR)
|
|
|
|
|
|
|
|
include(FetchContent)
|
|
|
|
|
|
|
|
if (NOT TARGET solanaceae_plugin)
|
|
|
|
FetchContent_Declare(solanaceae_plugin
|
|
|
|
GIT_REPOSITORY https://github.com/Green-Sky/solanaceae_plugin.git
|
|
|
|
GIT_TAG master
|
|
|
|
EXCLUDE_FROM_ALL
|
|
|
|
)
|
|
|
|
FetchContent_MakeAvailable(solanaceae_plugin)
|
|
|
|
endif()
|
|
|
|
|
2024-03-08 21:36:54 +01:00
|
|
|
if (NOT TARGET PureDOOM)
|
|
|
|
add_subdirectory(./pure_doom)
|
|
|
|
endif()
|
|
|
|
|
2024-03-09 14:41:56 +01:00
|
|
|
if (NOT TARGET imgui)
|
|
|
|
FetchContent_Declare(imgui
|
|
|
|
GIT_REPOSITORY https://github.com/ocornut/imgui.git
|
2025-01-13 13:24:43 +01:00
|
|
|
GIT_TAG cb16568 # v1.91.3
|
2024-03-09 14:41:56 +01:00
|
|
|
EXCLUDE_FROM_ALL
|
2025-01-13 13:24:43 +01:00
|
|
|
CONFIGURE_COMMAND "" # remove?
|
2024-03-09 14:41:56 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
# imgui does not provide a cmake
|
|
|
|
FetchContent_GetProperties(imgui)
|
|
|
|
if(NOT imgui_POPULATED)
|
2025-01-13 13:24:43 +01:00
|
|
|
FetchContent_MakeAvailable(imgui)
|
2024-03-09 14:41:56 +01:00
|
|
|
|
|
|
|
add_library(imgui STATIC
|
|
|
|
${imgui_SOURCE_DIR}/imgui.h
|
|
|
|
${imgui_SOURCE_DIR}/imgui_internal.h
|
|
|
|
|
|
|
|
${imgui_SOURCE_DIR}/imgui.cpp
|
|
|
|
${imgui_SOURCE_DIR}/imgui_demo.cpp
|
|
|
|
${imgui_SOURCE_DIR}/imgui_draw.cpp
|
|
|
|
${imgui_SOURCE_DIR}/imgui_tables.cpp
|
|
|
|
${imgui_SOURCE_DIR}/imgui_widgets.cpp
|
|
|
|
${imgui_SOURCE_DIR}/imstb_rectpack.h
|
|
|
|
${imgui_SOURCE_DIR}/imstb_textedit.h
|
|
|
|
${imgui_SOURCE_DIR}/imstb_truetype.h
|
|
|
|
|
|
|
|
${imgui_SOURCE_DIR}/misc/cpp/imgui_stdlib.h
|
|
|
|
${imgui_SOURCE_DIR}/misc/cpp/imgui_stdlib.cpp
|
|
|
|
)
|
|
|
|
target_include_directories(imgui PUBLIC ${imgui_SOURCE_DIR})
|
|
|
|
target_compile_features(imgui PUBLIC cxx_std_11)
|
2025-01-13 13:24:43 +01:00
|
|
|
target_compile_definitions(imgui PUBLIC IMGUI_USE_WCHAR32)
|
2024-03-09 14:41:56 +01:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|