From 1686ae3ff97955181054ecc853dd7f1a82541253 Mon Sep 17 00:00:00 2001 From: David Rose Date: Tue, 20 Sep 2005 00:18:16 +0000 Subject: [PATCH] use Unix-style paths for OpenCV, per convention --- dtool/Config.pp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dtool/Config.pp b/dtool/Config.pp index c19f7d0d10..76ef65794f 100644 --- a/dtool/Config.pp +++ b/dtool/Config.pp @@ -510,10 +510,10 @@ #define DX_LIBS d3d8.lib d3dx8.lib dxerr8.lib #defer HAVE_DX $[libtest $[DX_LPATH],$[DX_LIBS]] -// Is CV available, and should we try to build with it? -#define CV_IPATH $[WINTOOLS]/sdk/cv/include -#define CV_LPATH $[WINTOOLS]/sdk/cv/lib -#define CV_LIBS cv.lib highgui.lib cxcore.lib +// Is OpenCV installed, and where? +#define CV_IPATH /usr/local/include/opencv +#define CV_LPATH /usr/local/lib +#define CV_LIBS $[if $[WINDOWS_PLATFORM],cv.lib highgui.lib cxcore.lib,cv highgui cxcore] #defer HAVE_CV $[libtest $[CV_LPATH],$[CV_LIBS]] // Do you want to build the DirectD tools for starting Panda clients