43 lines
1.2 KiB
CMake
43 lines
1.2 KiB
CMake
include(FetchContent)
|
|
|
|
#=================== spdlog ===================
|
|
# macports has issues with this because of fmt
|
|
# brew doesn't support building multiarch
|
|
find_package(spdlog QUIET)
|
|
if (NOT ${spdlog_FOUND})
|
|
FetchContent_Declare(
|
|
spdlog
|
|
GIT_REPOSITORY https://github.com/gabime/spdlog.git
|
|
GIT_TAG v1.14.1
|
|
OVERRIDE_FIND_PACKAGE
|
|
)
|
|
FetchContent_MakeAvailable(spdlog)
|
|
endif()
|
|
|
|
#=================== Metal-cpp ===================
|
|
FetchContent_Declare(
|
|
metalcpp
|
|
GIT_REPOSITORY https://github.com/briaguya-ai/single-header-metal-cpp.git
|
|
GIT_TAG macOS13_iOS16
|
|
)
|
|
FetchContent_MakeAvailable(metalcpp)
|
|
list(APPEND ADDITIONAL_LIB_INCLUDES ${metalcpp_SOURCE_DIR})
|
|
|
|
#=================== ImGui ===================
|
|
target_sources(ImGui
|
|
PRIVATE
|
|
${imgui_SOURCE_DIR}/backends/imgui_impl_metal.mm
|
|
)
|
|
|
|
target_include_directories(ImGui PRIVATE ${metalcpp_SOURCE_DIR})
|
|
target_compile_definitions(ImGui PUBLIC IMGUI_IMPL_METAL_CPP)
|
|
|
|
find_package(SDL2 REQUIRED)
|
|
target_link_libraries(ImGui PUBLIC SDL2::SDL2)
|
|
|
|
find_package(GLEW REQUIRED)
|
|
target_link_libraries(ImGui PUBLIC ${OPENGL_opengl_LIBRARY} GLEW::GLEW)
|
|
set_target_properties(ImGui PROPERTIES
|
|
XCODE_ATTRIBUTE_CLANG_ENABLE_OBJC_ARC YES
|
|
)
|