Add libjpeg-turbo 1.3.1.

This commit is contained in:
rude
2014-04-21 15:10:35 +02:00
parent 4a4f1f3329
commit d74126b4fd
355 changed files with 154340 additions and 0 deletions
@@ -0,0 +1,15 @@
if(NOT MD5)
message(FATAL_ERROR "MD5 not specified")
endif()
if(NOT FILE)
message(FATAL_ERROR "FILE not specified")
endif()
file(MD5 ${FILE} MD5FILE)
if(NOT MD5 STREQUAL MD5FILE)
message(FATAL_ERROR "MD5 of ${FILE} should be ${MD5}, not ${MD5FILE}.")
else()
message(STATUS "${MD5}: OK")
endif()