diff options
Diffstat (limited to 'notsecrets')
-rw-r--r-- | notsecrets/CMakeLists.txt | 9 | ||||
-rw-r--r-- | notsecrets/logo.qrc | 8 |
2 files changed, 16 insertions, 1 deletions
diff --git a/notsecrets/CMakeLists.txt b/notsecrets/CMakeLists.txt index 63930672..f12b5274 100644 --- a/notsecrets/CMakeLists.txt +++ b/notsecrets/CMakeLists.txt @@ -3,8 +3,15 @@ target_link_libraries(secrets Qt5::Core) target_compile_definitions(secrets PUBLIC -DEMBED_SECRETS) target_include_directories(secrets PUBLIC .) -set(Launcher_Name "Launcher" PARENT_SCOPE) +set(Launcher_CommonName "DevLauncher") + set(Launcher_Copyright "MultiMC Contributors" PARENT_SCOPE) +set(Launcher_Domain "multimc.org" PARENT_SCOPE) +set(Launcher_Name "${Launcher_CommonName}" PARENT_SCOPE) +set(Launcher_DisplayName "${Launcher_CommonName} 5" PARENT_SCOPE) +set(Launcher_UserAgent "${Launcher_CommonName}/5.0" PARENT_SCOPE) +set(Launcher_ConfigFile "devlauncher.cfg" PARENT_SCOPE) set(Launcher_Branding_ICNS "notsecrets/Launcher.icns" PARENT_SCOPE) set(Launcher_Branding_WindowsRC "notsecrets/launcher.rc" PARENT_SCOPE) +set(Launcher_Branding_LogoQRC "notsecrets/logo.qrc" PARENT_SCOPE) diff --git a/notsecrets/logo.qrc b/notsecrets/logo.qrc new file mode 100644 index 00000000..f1da6fe6 --- /dev/null +++ b/notsecrets/logo.qrc @@ -0,0 +1,8 @@ +<!DOCTYPE RCC> +<RCC version="1.0"> + <qresource prefix="/"> + <file>logo.svg</file> + </qresource> +</RCC> + + |