From 49f22d6f41d46635502d9e2e492ee36a1197a4de Mon Sep 17 00:00:00 2001 From: danenders Date: Sun, 26 Jun 2022 21:26:23 -0400 Subject: adding macos support in progress --- src/main.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index 4ebb8e6..51722dd 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2,6 +2,7 @@ // dng //------------------------------------------------------------------------ // Copyright (c) 2022 Steph Enders +// Copyright (c) 2022 Dan Enders // // This software is provided 'as-is', without any express or implied // warranty. In no event will the authors be held liable for any damages @@ -33,13 +34,19 @@ #include "resources/Resources.h" #ifdef __linux__ #include "resources/linux/LinuxResources.h" +#include #endif // __linux__ #ifdef _WIN32 #include "resources/windows/WindowsResources.h" +#include #endif // _WIN32 +#ifdef __APPLE__ +#include "resources/macos/MacResources.h" +#include +namespace std::filesystem = std::experimental::filesystem; +#endif // __APPLE__ #include #include -#include #include std::shared_ptr lvl; -- cgit v1.2.3-54-g00ecf