diff --git a/libs/kiplatform/osx/app.mm b/libs/kiplatform/osx/app.mm index 8feb4794bd..1931ad8d0b 100644 --- a/libs/kiplatform/osx/app.mm +++ b/libs/kiplatform/osx/app.mm @@ -32,8 +32,13 @@ bool KIPLATFORM::APP::Init() bool KIPLATFORM::APP::IsOperatingSystemUnsupported() { - // Not implemented on this platform + // We only support bundled applications. Purposefully unbundling may introduce + // issues that we cannot support +#ifdef __MACOSX_APP__ return false; +#else + return true; +#endif }