1 2 3 4 5 6 7 8 9 10 11
# -*- cmake -*- include(Prebuilt) add_library( ll::glm INTERFACE IMPORTED ) #use_system_binary( glm ) if (${LINUX_DISTRO} MATCHES debian) use_prebuilt_binary(glm) elseif (NOT WINDOWS) find_package( glm REQUIRED ) endif ()