light/tools/cmake/dependencies.cmake
light7734 9c071493c5
Some checks reported errors
continuous-integration/drone/push Build was killed
refactor: imgui as conan module instead of git submodule
2025-07-20 05:20:43 +03:30

15 lines
366 B
CMake

find_package(glfw3 REQUIRED)
find_package(stb REQUIRED)
find_package(yaml-cpp REQUIRED)
find_package(EnTT REQUIRED)
find_package(opengl_system REQUIRED)
find_package(lz4 REQUIRED)
find_package(imgui REQUIRED)
add_compile_definitions(IMGUI_IMPL_OPENGL_LOADER_GLAD)
target_link_libraries(
imgui::imgui
INTERFACE glad
INTERFACE opengl::opengl
INTERFACE glfw
)