summaryrefslogtreecommitdiff
path: root/indra/cmake/PNG.cmake
diff options
context:
space:
mode:
authorAndrew A. de Laix <alain@lindenlab.com>2011-03-01 15:23:23 -0800
committerAndrew A. de Laix <alain@lindenlab.com>2011-03-01 15:23:23 -0800
commit31d673cb512f88c0bd55dd2f81671a16df0dc0c8 (patch)
tree3d40ff68b7342865b5d7d150ba01fd69f4ccc7a3 /indra/cmake/PNG.cmake
parent6a10c803d3b7d16c25d085f19fafd404b95eb485 (diff)
parentc5aaefe37f9d7e894076dae26245a3d87f74d0ff (diff)
Automated merge with https://bitbucket.org/jenn_linden/viewer-vs2010
Diffstat (limited to 'indra/cmake/PNG.cmake')
-rw-r--r--indra/cmake/PNG.cmake9
1 files changed, 7 insertions, 2 deletions
diff --git a/indra/cmake/PNG.cmake b/indra/cmake/PNG.cmake
index 33fc3e5bac..86b7267494 100644
--- a/indra/cmake/PNG.cmake
+++ b/indra/cmake/PNG.cmake
@@ -8,6 +8,11 @@ if (STANDALONE)
include(FindPNG)
else (STANDALONE)
use_prebuilt_binary(libpng)
- set(PNG_LIBRARIES libpng15)
- set(PNG_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/include/libpng15)
+ if (WINDOWS)
+ set(PNG_LIBRARIES libpng15)
+ set(PNG_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/include/libpng15)
+ else()
+ set(PNG_LIBRARIES png12)
+ set(PNG_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/include/libpng12)
+ endif()
endif (STANDALONE)