shithub: cstory

Download patch

ref: d4ce0839bb98c2f9840e71fb065ddc1961e63e27
parent: a9f95ed1a2c4ac466623569415200091720c0eac
author: Gabriel Ravier <gabravier@gmail.com>
date: Wed Sep 11 09:33:09 EDT 2019

Forgot endif() in bin2h/CMakeLists.txt

Signed-off-by: Gabriel Ravier <gabravier@gmail.com>

--- a/bin2h/CMakeLists.txt
+++ b/bin2h/CMakeLists.txt
@@ -17,6 +17,7 @@
 # MSVC tweak
 if(MSVC)
 	target_compile_definitions(bin2h PRIVATE _CRT_SECURE_NO_WARNINGS)	# Disable warnings that normally fire up on MSVC when using "unsafe" functions instead of using MSVC's "safe" _s functions
+endif()
 
 # Enable link-time optimisation if available
 if(NOT CMAKE_BUILD_TYPE STREQUAL "Debug")
--