This commit is contained in:
2026-02-08 20:57:10 +03:00
parent 6ae3e37172
commit e8c7abf925
2 changed files with 4 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ set_target_properties(
find_package(OpenGL) find_package(OpenGL)
find_package(GLEW REQUIRED) find_package(GLEW REQUIRED)
find_package(glfw3 CONFIG REQUIRED) find_package(glfw3 CONFIG REQUIRED)
target_link_libraries(example_glfw3 PRIVATE omath::omath GLEW::GLEW glfw OpenGL::OpenGL) target_link_libraries(example_glfw3 PRIVATE omath::omath GLEW::GLEW glfw OpenGL::GL)
if(OMATH_ENABLE_VALGRIND) if(OMATH_ENABLE_VALGRIND)
omath_setup_valgrind(example_projection_matrix_builder) omath_setup_valgrind(example_projection_matrix_builder)

View File

@@ -27,10 +27,11 @@
] ]
}, },
"examples": { "examples": {
"description": "Build benchmarks", "description": "Build examples",
"dependencies": [ "dependencies": [
"glfw3", "glfw3",
"glew" "glew",
"opengl"
] ]
}, },
"imgui": { "imgui": {