diff options
author | Lenny McLennington <lennymclennington@protonmail.com> | 2021-12-20 02:41:08 +0000 |
---|---|---|
committer | Lenny McLennington <lennymclennington@protonmail.com> | 2021-12-20 02:57:13 +0000 |
commit | e6246a9306567f5646d3bc1971a1c5c4cf8f4f54 (patch) | |
tree | 17a4e24951924f1cfcda2558bf5d13bd620a5625 /buildconfig | |
parent | dcb57f199531e45ac4bf947eaf8cbfe5e66fce23 (diff) | |
download | PrismLauncher-e6246a9306567f5646d3bc1971a1c5c4cf8f4f54.tar.gz PrismLauncher-e6246a9306567f5646d3bc1971a1c5c4cf8f4f54.tar.bz2 PrismLauncher-e6246a9306567f5646d3bc1971a1c5c4cf8f4f54.zip |
Move MSA Client ID to the same place as the others
MSA Client ID has been moved to CMakeLists.txt, and defaults to the
Client ID for the PolyMC application.
Removed secrets/notsecrets library, replace with (temporary?)
program_info subdirectory.
Diffstat (limited to 'buildconfig')
-rw-r--r-- | buildconfig/BuildConfig.cpp.in | 1 | ||||
-rw-r--r-- | buildconfig/BuildConfig.h | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/buildconfig/BuildConfig.cpp.in b/buildconfig/BuildConfig.cpp.in index 9e449aec..66cb0f17 100644 --- a/buildconfig/BuildConfig.cpp.in +++ b/buildconfig/BuildConfig.cpp.in @@ -45,6 +45,7 @@ Config::Config() NEWS_RSS_URL = "@Launcher_NEWS_RSS_URL@"; PASTE_EE_KEY = "@Launcher_PASTE_EE_API_KEY@"; IMGUR_CLIENT_ID = "@Launcher_IMGUR_CLIENT_ID@"; + MSA_CLIENT_ID = "@Launcher_MSA_CLIENT_ID@"; META_URL = "@Launcher_META_URL@"; BUG_TRACKER_URL = "@Launcher_BUG_TRACKER_URL@"; diff --git a/buildconfig/BuildConfig.h b/buildconfig/BuildConfig.h index ac05f288..2d847f94 100644 --- a/buildconfig/BuildConfig.h +++ b/buildconfig/BuildConfig.h @@ -79,6 +79,11 @@ public: * Client ID you can get from Imgur when you register an application */ QString IMGUR_CLIENT_ID; + + /** + * Client ID you can get from Microsoft Identity Platform when you register an application + */ + QString MSA_CLIENT_ID; /** * Metadata repository URL prefix |