From: DRC Date: Tue, 11 Mar 2014 06:24:46 +0000 (+0000) Subject: Fix the build of the Java classes when using MSVC 2010 and later. Something in the... X-Git-Tag: 1.3.90~141 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3bf21e05e117cf62f31ad5218ca71e2de8e1f418;p=libjpeg-turbo Fix the build of the Java classes when using MSVC 2010 and later. Something in the recesses of my brain is telling me that I tried this before and it failed under some circumstances, but it must have been a bug in an older CMake implementation. CMake 2.8.8 and later seem to work fine with this patch. This patch also updates the minimum required version to 2.8.8, because 2.8.8 fixed another issue that was preventing the SIMD code from building under MSVC 2010 and later. git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@1149 632fc199-4ca6-4c93-a231-07263d6284db --- 3bf21e05e117cf62f31ad5218ca71e2de8e1f418 diff --cc CMakeLists.txt index 9567720,d0af65e..f88cf4f --- a/CMakeLists.txt +++ b/CMakeLists.txt @@@ -2,10 -2,10 +2,10 @@@ # Setup # - cmake_minimum_required(VERSION 2.6) + cmake_minimum_required(VERSION 2.8.8) project(libjpeg-turbo C) -set(VERSION 1.3.1) +set(VERSION 1.3.80) if(MINGW OR CYGWIN) execute_process(COMMAND "date" "+%Y%m%d" OUTPUT_VARIABLE BUILD)