From a0914207649af452c6fe810a4c729286b09089bf Mon Sep 17 00:00:00 2001 From: toaster <rollerorbital@gmail.com> Date: Sun, 17 Jul 2022 22:03:57 +0100 Subject: [PATCH] Actually update CMakeLists.txt for real. And add a little extra to the comment for anti-footgun insurance. --- CMakeLists.txt | 2 +- src/doomdef.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1e80b549e..8bd768438 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.0) # DO NOT CHANGE THIS SRB2 STRING! Some variable names depend on this string. # Version change is fine. project(SRB2 - VERSION 1.3 + VERSION 1.4 LANGUAGES C) if(${PROJECT_SOURCE_DIR} MATCHES ${PROJECT_BINARY_DIR}) diff --git a/src/doomdef.h b/src/doomdef.h index ffbdd8c40..7f6a74c50 100644 --- a/src/doomdef.h +++ b/src/doomdef.h @@ -152,6 +152,7 @@ extern char logfilename[1024]; #define VERSIONSTRING "v1.4" #define VERSIONSTRINGW L"v1.4" // Hey! If you change this, add 1 to the MODVERSION below! Otherwise we can't force updates! +// And change CMakeLists.txt (not src/, but in root), for CMake users! // AND appveyor.yml, for the build bots! #endif -- GitLab