xS: parse project version from CMakeLists.txt

This commit is contained in:
2022-09-27 23:39:53 +02:00
parent 7c74e6615d
commit 4d99690b89
5 changed files with 25 additions and 11 deletions

View File

@@ -40,13 +40,9 @@ import (
"time"
)
var debugMode = false
const projectName = "xS"
const (
projectName = "xS"
// TODO: Consider using the same version number for all subprojects.
projectVersion = "0"
)
var debugMode = false
// --- Logging -----------------------------------------------------------------