From 0328691f76e70f2e7b8cfe9d46b97808e086d28d Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 29 Oct 2010 09:56:09 +0000 Subject: [PATCH] From Sherman Wilcox, "there's a bug in the cmake file for the tiff plugin. See attached. The problem was that the output files were not properly setting the debug/release libs due to this cmake bug. What occurred was the release lib was set in all configurations." --- src/osgPlugins/tiff/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgPlugins/tiff/CMakeLists.txt b/src/osgPlugins/tiff/CMakeLists.txt index 6b856eab2..fc945d68e 100644 --- a/src/osgPlugins/tiff/CMakeLists.txt +++ b/src/osgPlugins/tiff/CMakeLists.txt @@ -2,7 +2,7 @@ INCLUDE_DIRECTORIES( ${TIFF_INCLUDE_DIR} ) SET(TARGET_SRC ReaderWriterTIFF.cpp ) -SET(TARGET_LIBRARIES_VARS TIFF_LIBRARIES) +SET(TARGET_LIBRARIES_VARS TIFF_LIBRARY) #### end var setup ### SETUP_PLUGIN(tiff)