16 lines
233 B
Plaintext
16 lines
233 B
Plaintext
|
#import <Foundation/Foundation.h>
|
||
|
#import "MacUtils.hpp"
|
||
|
|
||
|
namespace Slic3r {
|
||
|
|
||
|
bool is_macos_support_boost_add_file_log()
|
||
|
{
|
||
|
if (@available(macOS 12.0, *)) {
|
||
|
return true;
|
||
|
} else {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}; // namespace Slic3r
|