Files
glm/test/cmake/CMakeLists.txt
2025-12-08 15:21:53 +01:00

10 lines
235 B
CMake

cmake_minimum_required(VERSION 3.6...3.14 FATAL_ERROR)
cmake_policy(VERSION 3.6...3.14)
project(test_find_glm)
find_package(glm REQUIRED)
add_executable(test_find_glm test_find_glm.cpp)
target_link_libraries(test_find_glm glm::glm)