Correct the MD5 sum

This commit is contained in:
Godzil
2020-03-05 15:11:34 +00:00
parent a31ae5b2ef
commit 90e79576a2

View File

@@ -93,14 +93,12 @@ add_executable(uvmap_earth)
target_sources(uvmap_earth PRIVATE uvmap_earth.cpp) target_sources(uvmap_earth PRIVATE uvmap_earth.cpp)
file(DOWNLOAD file(DOWNLOAD
http://planetpixelemporium.com/download/download.php?earthmap1k.jpg http://planetpixelemporium.com/download/download.php?earthmap1k.jpg
${CMAKE_SOURCE_DIR}/external/earthmap1k.png ${CMAKE_SOURCE_DIR}/external/earthmap1k.jpg
EXPECTED_HASH MD5=5f94e9ab9d7f753b2f6185814640f73d EXPECTED_HASH MD5=49c3b412cfa448ec819412fb3ca089d2
) )
add_custom_command( add_custom_command(
TARGET uvmap_earth POST_BUILD TARGET uvmap_earth POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy COMMAND convert ${CMAKE_SOURCE_DIR}/external/earthmap1k.jpg ${CMAKE_CURRENT_BINARY_DIR}/earthmap1k.png)
${CMAKE_SOURCE_DIR}/external/earthmap1k.png
${CMAKE_CURRENT_BINARY_DIR}/earthmap1k.png)
add_test(NAME Chapter05_Test COMMAND $<TARGET_FILE:ch5_test>) add_test(NAME Chapter05_Test COMMAND $<TARGET_FILE:ch5_test>)
add_test(NAME Chapter06_Test COMMAND $<TARGET_FILE:ch6_test>) add_test(NAME Chapter06_Test COMMAND $<TARGET_FILE:ch6_test>)