Skip to content

Commit c9ee1f7

Browse files
author
Jan Wilmans
committed
fixed automatic build number update
1 parent 91d63ac commit c9ee1f7

File tree

4 files changed

+32
-22
lines changed

4 files changed

+32
-22
lines changed

application/DebugViewpp/UpdateBuildNr.cmd

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
@echo off
2+
3+
echo UpdateBuildNr.cmd updating %1
4+
echo UpdateBuildNr.cmd updating %2
5+
26
set file=%1
37
set xmlfile=%2
48
for /f "tokens=3,4,5,* delims=, " %%i in (%file%) do (

application/DebugViewpp/version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#define VERSION 1,9,0,0
2-
#define VERSION_STR "1.9.0.0"
1+
#define VERSION 1,9,0,24
2+
#define VERSION_STR "1.9.0.24"

application/DebugViewpp/version.wxi

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Include>
3-
<?define ProductVersion.Major="1" ?>
4-
<?define ProductVersion.Minor="8" ?>
5-
<?define ProductVersion.Revision="0" ?>
6-
<?define ProductVersion.Build="103" ?>
7-
<?define ProductVersion="1.8.0.103" ?>
8-
</Include>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Include>
3+
<?define ProductVersion.Major="1" ?>
4+
<?define ProductVersion.Minor="9" ?>
5+
<?define ProductVersion.Revision="0" ?>
6+
<?define ProductVersion.Build="24" ?>
7+
<?define ProductVersion="1.9.0.24" ?>
8+
</Include>

cmake/CMakeLists.buildnumber.cmake

+18-12
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,23 @@
1-
# Set the initial build number
2-
set(BUILD_NUMBER 0)
31

4-
# Check if the build number file exists
5-
if(EXISTS ${CMAKE_SOURCE_DIR}/cmake/build_number.txt)
6-
# If it exists, read the current build number from the file
7-
file(READ ${CMAKE_SOURCE_DIR}/cmake/build_number.txt BUILD_NUMBER)
8-
endif()
2+
execute_process(
3+
COMMAND cmd /C UpdateBuildNr.cmd version.h version.wxi
4+
WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}/Application/DebugviewPP/"
5+
COMMAND_ERROR_IS_FATAL ANY
6+
)
7+
8+
file(READ "${CMAKE_SOURCE_DIR}/application/DebugViewpp/version.h" VERSION_FILE_CONTENTS)
99

10-
# Increment the build number
11-
math(EXPR BUILD_NUMBER "${BUILD_NUMBER} + 1")
10+
# Regular expression to extract VERSION_STR
11+
string(REGEX MATCH "#define VERSION_STR \"([0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+)\"" VERSION_STR_MATCH "${VERSION_FILE_CONTENTS}")
1212

13-
# Write the updated build number to the file
14-
file(WRITE ${CMAKE_SOURCE_DIR}/cmake/build_number.txt ${BUILD_NUMBER})
13+
# Extract the version string from the matched content
14+
if(VERSION_STR_MATCH)
15+
set(VERSION_STR ${CMAKE_MATCH_1})
16+
else()
17+
message(FATAL_ERROR "Failed to extract VERSION_STR from version.h")
18+
endif()
1519

1620
# Set the build number as a CMake variable
17-
set(DEBUGVIEW_VERSION "1.9.0.${BUILD_NUMBER}" CACHE INTERNAL "")
21+
set(DEBUGVIEW_VERSION "${VERSION_STR}" CACHE INTERNAL "")
22+
23+
MESSAGE("Retrieved version: ${VERSION_STR} from version.h")

0 commit comments

Comments
 (0)