From fd813a002ccb086983b5dd9bdb98034cf480fb46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20A=2E=20Col=C3=B3n=20V=C3=A9lez?= Date: Wed, 19 Aug 2015 05:37:14 -0400 Subject: [PATCH] Lilypad: Fix compilation error in Debug target. It could not find dxguid.lib since it was only available for Release. . This should go on a prop but that is a different PR. . I also fixed it for x64 while I'm at it. --- plugins/LilyPad/LilyPad.vcxproj | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/LilyPad/LilyPad.vcxproj b/plugins/LilyPad/LilyPad.vcxproj index ee9118979a..bd1a66083e 100644 --- a/plugins/LilyPad/LilyPad.vcxproj +++ b/plugins/LilyPad/LilyPad.vcxproj @@ -146,8 +146,9 @@ AllRules.ruleset - $(DXSDK_DIR)\Lib\x86;$(LibraryPath) - $(DXSDK_DIR)\include;$(IncludePath) + $(DXSDK_DIR)Lib\x86;$(LibraryPath) + $(DXSDK_DIR)Lib\x64;$(LibraryPath) + $(DXSDK_DIR)include;$(IncludePath)