diff options
author | Jan Dalheimer <jan@dalheimer.de> | 2014-01-03 19:19:27 +0100 |
---|---|---|
committer | Jan Dalheimer <jan@dalheimer.de> | 2014-01-03 19:19:27 +0100 |
commit | b3dd1eba2146849cddd7e85b16aa3b8af9d2de23 (patch) | |
tree | 2f7f5dc275257bf4cdecd70063982dfa7d2e15f2 /CMakeLists.txt | |
parent | c35012f1a570e752051c8fcbafe628fc64aa793f (diff) | |
download | MultiMC-b3dd1eba2146849cddd7e85b16aa3b8af9d2de23.tar MultiMC-b3dd1eba2146849cddd7e85b16aa3b8af9d2de23.tar.gz MultiMC-b3dd1eba2146849cddd7e85b16aa3b8af9d2de23.tar.lz MultiMC-b3dd1eba2146849cddd7e85b16aa3b8af9d2de23.tar.xz MultiMC-b3dd1eba2146849cddd7e85b16aa3b8af9d2de23.zip |
Notifications system. Mainly to be used in case the updater breaks.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c026de4d..7ac13fa0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -144,6 +144,8 @@ SET(MultiMC_CHANLIST_URL "" CACHE STRING "URL for the channel list.") # Updater enabled? SET(MultiMC_UPDATER false CACHE BOOL "Whether or not the update system is enabled. If this is enabled, you must also set MultiMC_CHANLIST_URL and MultiMC_VERSION_CHANNEL in order for it to work properly.") +# Notification URL +SET(MultiMC_NOTIFICATION_URL "" CACHE STRING "URL for checking for notifications.") # Build a version string to display in the configure logs. SET(MultiMC_VERSION_STRING "${MultiMC_VERSION_MAJOR}.${MultiMC_VERSION_MINOR}") @@ -337,6 +339,8 @@ logic/updater/UpdateChecker.h logic/updater/UpdateChecker.cpp logic/updater/DownloadUpdateTask.h logic/updater/DownloadUpdateTask.cpp +logic/updater/NotificationChecker.h +logic/updater/NotificationChecker.cpp # News System logic/news/NewsChecker.h |