Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jmorton06 committed Jun 24, 2024
1 parent 66cca6b commit d4f8173
Show file tree
Hide file tree
Showing 11 changed files with 33 additions and 11 deletions.
4 changes: 3 additions & 1 deletion Lumos/Source/Lumos/Platform/Android/AndroidOS.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#pragma once
#ifndef LUMOS_PLATFORM_MACOS #include "Precompiled.h" #endif
#ifndef LUMOS_PLATFORM_MACOS
#include "Precompiled.h"
#endif
#include "Core/OS/OS.h"

namespace Lumos
Expand Down
4 changes: 3 additions & 1 deletion Lumos/Source/Lumos/Platform/Windows/WindowsFileSystem.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#ifndef LUMOS_PLATFORM_MACOS #include "Precompiled.h" #endif
#ifndef LUMOS_PLATFORM_MACOS
#include "Precompiled.h"
#endif
#include "Core/OS/FileSystem.h"
#include "WindowsUtilities.h"

Expand Down
4 changes: 3 additions & 1 deletion Lumos/Source/Lumos/Platform/Windows/WindowsOS.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#ifndef LUMOS_PLATFORM_MACOS #include "Precompiled.h" #endif
#ifndef LUMOS_PLATFORM_MACOS
#include "Precompiled.h"
#endif
#include "WindowsOS.h"
#include "WindowsPower.h"
#include "WindowsWindow.h"
Expand Down
4 changes: 3 additions & 1 deletion Lumos/Source/Lumos/Platform/Windows/WindowsPower.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#ifndef LUMOS_PLATFORM_MACOS #include "Precompiled.h" #endif
#ifndef LUMOS_PLATFORM_MACOS
#include "Precompiled.h"
#endif
#include "WindowsPower.h"
#include <windows.h>

Expand Down
4 changes: 3 additions & 1 deletion Lumos/Source/Lumos/Platform/Windows/WindowsTimer.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#ifndef LUMOS_PLATFORM_MACOS #include "Precompiled.h" #endif
#ifndef LUMOS_PLATFORM_MACOS
#include "Precompiled.h"
#endif
#include "Utilities/Timer.h"

namespace Lumos
Expand Down
4 changes: 3 additions & 1 deletion Lumos/Source/Lumos/Platform/Windows/WindowsUtilities.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#ifndef LUMOS_PLATFORM_MACOS #include "Precompiled.h" #endif
#ifndef LUMOS_PLATFORM_MACOS
#include "Precompiled.h"
#endif
#include "WindowsUtilities.h"

#include <codecvt>
Expand Down
4 changes: 3 additions & 1 deletion Lumos/Source/Lumos/Platform/Windows/WindowsVulkan.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#ifndef LUMOS_PLATFORM_MACOS #include "Precompiled.h" #endif
#ifndef LUMOS_PLATFORM_MACOS
#include "Precompiled.h"
#endif

#ifdef LUMOS_RENDER_API_VULKAN

Expand Down
4 changes: 3 additions & 1 deletion Lumos/Source/Lumos/Platform/Windows/WindowsWindow.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#ifndef LUMOS_PLATFORM_MACOS #include "Precompiled.h" #endif
#ifndef LUMOS_PLATFORM_MACOS
#include "Precompiled.h"
#endif
#define NOMINMAX
#undef NOGDI
#include <Windows.h>
Expand Down
4 changes: 3 additions & 1 deletion Lumos/Source/Lumos/Platform/iOS/iOSFileSystem.mm
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#ifndef LUMOS_PLATFORM_MACOS #include "Precompiled.h" #endif
#ifndef LUMOS_PLATFORM_MACOS
#include "Precompiled.h"
#endif
#include "Core/OS/FileSystem.h"
#include "Utilities/StringUtilities.h"
#include "iOSOS.h"
Expand Down
4 changes: 3 additions & 1 deletion Lumos/Source/Lumos/Platform/iOS/iOSOS.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#pragma once
#ifndef LUMOS_PLATFORM_MACOS #include "Precompiled.h" #endif
#ifndef LUMOS_PLATFORM_MACOS
#include "Precompiled.h"
#endif
#include "Core/OS/OS.h"

namespace Lumos
Expand Down
4 changes: 3 additions & 1 deletion Lumos/Source/Lumos/Platform/iOS/iOSWindow.mm
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#ifndef LUMOS_PLATFORM_MACOS #include "Precompiled.h" #endif
#ifndef LUMOS_PLATFORM_MACOS
#include "Precompiled.h"
#endif
#include "iOSWindow.h"
#include "iOSOS.h"
#include "Graphics/RHI/GraphicsContext.h"
Expand Down

0 comments on commit d4f8173

Please sign in to comment.