celestia/src/celutil/appleutils.mm

27 lines
823 B
Plaintext

// appleutils.mm
//
// Copyright (C) 2021-present, Celestia Development Team.
//
// Miscellaneous useful Apple platform functions.
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
#include <Foundation/Foundation.h>
#include "appleutils.h"
fs::path AppleHomeDirectory()
{
return [NSHomeDirectory() UTF8String];
}
fs::path AppleApplicationSupportDirectory()
{
NSArray *directories = NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES);
if ([directories count] > 0)
return [[directories firstObject] UTF8String];
return "~/Library/Application Support";
}