diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-06-26 11:55:48 +0200 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2023-06-26 11:55:48 +0200 |
commit | 63acf0a7b4492334ad2d5b8c623a5ae6a54bb13d (patch) | |
tree | 2f1c0d020b5fa0cebaef52d0151fd6a9d36e407a | |
parent | fce000206f9a866b70c50f2b6ea860bded19383b (diff) | |
download | PrismLauncher-63acf0a7b4492334ad2d5b8c623a5ae6a54bb13d.tar.gz PrismLauncher-63acf0a7b4492334ad2d5b8c623a5ae6a54bb13d.tar.bz2 PrismLauncher-63acf0a7b4492334ad2d5b8c623a5ae6a54bb13d.zip |
fix: set default platform to "unknown"
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 70a55319..48995bed 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -146,7 +146,7 @@ set(Launcher_VERSION_NAME4 "${Launcher_VERSION_MAJOR}.${Launcher_VERSION_MINOR}. set(Launcher_VERSION_NAME4_COMMA "${Launcher_VERSION_MAJOR},${Launcher_VERSION_MINOR},0,0") # Build platform. -set(Launcher_BUILD_PLATFORM "" CACHE STRING "A short string identifying the platform that this build was built for. Only used to display in the about dialog.") +set(Launcher_BUILD_PLATFORM "unknown" CACHE STRING "A short string identifying the platform that this build was built for. Only used to display in the about dialog.") # Channel list URL set(Launcher_UPDATER_BASE "" CACHE STRING "Base URL for the updater.") |