diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/cmake/PNG.cmake | 4 | ||||
| -rw-r--r-- | indra/cmake/XmlRpcEpi.cmake | 5 | ||||
| -rw-r--r-- | indra/newview/CMakeLists.txt | 2 | 
3 files changed, 8 insertions, 3 deletions
diff --git a/indra/cmake/PNG.cmake b/indra/cmake/PNG.cmake index f6522d9e2f..33fc3e5bac 100644 --- a/indra/cmake/PNG.cmake +++ b/indra/cmake/PNG.cmake @@ -8,6 +8,6 @@ if (STANDALONE)    include(FindPNG)  else (STANDALONE)    use_prebuilt_binary(libpng) -  set(PNG_LIBRARIES png12) -  set(PNG_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/include/libpng12) +  set(PNG_LIBRARIES libpng15) +  set(PNG_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/include/libpng15)  endif (STANDALONE) diff --git a/indra/cmake/XmlRpcEpi.cmake b/indra/cmake/XmlRpcEpi.cmake index 107d1926ba..5bd4848245 100644 --- a/indra/cmake/XmlRpcEpi.cmake +++ b/indra/cmake/XmlRpcEpi.cmake @@ -9,7 +9,10 @@ if (STANDALONE)  else (STANDALONE)      use_prebuilt_binary(xmlrpc-epi)      if (WINDOWS) -        set(XMLRPCEPI_LIBRARIES xmlrpcepi) +        set(XMLRPCEPI_LIBRARIES  +            debug xmlrpc-epid +            optimized xmlrpc-epi +        )      else (WINDOWS)          set(XMLRPCEPI_LIBRARIES xmlrpc-epi)      endif (WINDOWS) diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index db029f9de7..1f07af0608 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -10,6 +10,7 @@ include(DirectX)  include(OpenSSL)  include(DragDrop)  include(ELFIO) +include(EXPAT)  include(FMOD)  include(OPENAL)  include(FindOpenGL) @@ -1681,6 +1682,7 @@ target_link_libraries(${VIEWER_BINARY_NAME}      ${SMARTHEAP_LIBRARY}      ${UI_LIBRARIES}      ${WINDOWS_LIBRARIES} +    ${EXPAT_LIBRARIES}      ${XMLRPCEPI_LIBRARIES}      ${ELFIO_LIBRARIES}      ${OPENSSL_LIBRARIES}  | 
