Author: tfaber Date: Sun Feb 5 09:42:43 2017 New Revision: 73695
URL: http://svn.reactos.org/svn/reactos?rev=73695&view=rev Log: [ZLIBHOST] - We only need the minimal Z_SOLO functionality. Avoids some compiler warnings.
Modified: trunk/reactos/sdk/lib/3rdparty/zlib/CMakeLists.txt
Modified: trunk/reactos/sdk/lib/3rdparty/zlib/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/trunk/reactos/sdk/lib/3rdparty/zlib/CMake... ============================================================================== --- trunk/reactos/sdk/lib/3rdparty/zlib/CMakeLists.txt [iso-8859-1] (original) +++ trunk/reactos/sdk/lib/3rdparty/zlib/CMakeLists.txt [iso-8859-1] Sun Feb 5 09:42:43 2017 @@ -26,5 +26,6 @@ add_library(zlib_solo ${SOLO_SOURCE}) add_target_compile_definitions(zlib_solo Z_SOLO) else() - add_library(zlibhost ${SOURCE} ${SOLO_SOURCE}) + add_library(zlibhost ${SOLO_SOURCE}) + add_target_compile_definitions(zlibhost Z_SOLO) endif()