From 70a457663d405d5e64d08a4d4f8dd5fec390807d Mon Sep 17 00:00:00 2001 From: Chuck Walbourn Date: Wed, 14 Jun 2023 13:22:07 -0700 Subject: [PATCH] CMake target file fix (#104) --- build/DirectXMesh-config.cmake.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/DirectXMesh-config.cmake.in b/build/DirectXMesh-config.cmake.in index 2884041..9e75cd1 100644 --- a/build/DirectXMesh-config.cmake.in +++ b/build/DirectXMesh-config.cmake.in @@ -10,7 +10,7 @@ endif() include(CMakeFindDependencyMacro) -if(MINGW OR (NOT WIN32) OR VCPKG_TOOLCHAIN) +if(MINGW OR (NOT WIN32)) find_dependency(directx-headers CONFIG) find_dependency(directxmath CONFIG) endif()