From cacde3e01ad2233857a65b483b827c105e198a37 Mon Sep 17 00:00:00 2001 From: David Williams Date: Sun, 13 Sep 2009 21:43:21 +0000 Subject: [PATCH] Made PolyVoxConfig.cmake differentiate between release and debug .dll's. This was previously done by FindPolyVox.cmake. --- library/PolyVoxConfig.cmake.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/PolyVoxConfig.cmake.in b/library/PolyVoxConfig.cmake.in index 346b3365..239ad2dc 100644 --- a/library/PolyVoxConfig.cmake.in +++ b/library/PolyVoxConfig.cmake.in @@ -24,8 +24,8 @@ set(PolyVoxCore_INCLUDE_DIRS "${PREFIX}/@PolyVoxCore_INCLUDE_INSTALL_DIRS@") set(PolyVoxUtil_INCLUDE_DIRS "${PREFIX}/@PolyVoxUtil_INCLUDE_INSTALL_DIRS@") set(PolyVox_INCLUDE_DIRS "${PolyVoxCore_INCLUDE_DIRS}" "${PolyVoxUtil_INCLUDE_DIRS}" "${PREFIX}/include") -set(PolyVoxCore_LIBRARIES "PolyVoxCore") -set(PolyVoxUtil_LIBRARIES "PolyVoxUtil") +set(PolyVoxCore_LIBRARIES debug "PolyVoxCore_d" optimized "PolyVoxCore") +set(PolyVoxUtil_LIBRARIES debug "PolyVoxUtil_d" optimized "PolyVoxUtil") set(PolyVox_LIBRARIES "${PolyVoxCore_LIBRARIES};${PolyVoxUtil_LIBRARIES}") message(STATUS "Found PolyVox")