mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 23:29:17 +00:00
CMakeLists: Add option to disable automatic update support
This commit is contained in:
parent
c9896e1c4b
commit
e23df9369d
3 changed files with 12 additions and 2 deletions
|
@ -128,11 +128,15 @@ std::string GenerateChangelog(const picojson::array& versions)
|
|||
|
||||
bool AutoUpdateChecker::SystemSupportsAutoUpdates()
|
||||
{
|
||||
#if defined AUTOUPDATE
|
||||
#if defined _WIN32 || defined __APPLE__
|
||||
return true;
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
static std::string GetPlatformID()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue