From f0c00bec1d7ce8f1209c4024e6000f907f11f1e9 Mon Sep 17 00:00:00 2001 From: Cristian Adam Date: Wed, 6 Nov 2019 15:55:47 +0100 Subject: CMakeVersion.rc: Fix build with llvm-rc llvm-rc expects versioning as having four items, it fails otherwise. --- Source/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index 63e08de..f4357e7 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -1177,7 +1177,7 @@ if(WIN32) unset(CMake_RCVERSION_MONTH_DAY) unset(CMake_RCVERSION_YEAR) else() - set(CMake_RCVERSION ${CMake_VERSION_MAJOR},${CMake_VERSION_MINOR},${CMake_VERSION_PATCH}) + set(CMake_RCVERSION ${CMake_VERSION_MAJOR},${CMake_VERSION_MINOR},${CMake_VERSION_PATCH},0) endif() set(CMake_RCVERSION_STR ${CMake_VERSION}) -- cgit v0.12