From f0a2048eff42080df0b4a5a824014dfb27e34fe4 Mon Sep 17 00:00:00 2001 From: Jan Date: Mon, 28 Oct 2024 22:25:54 +0100 Subject: [PATCH] chore: fix linux build --- src/Linker/LinkerPaths.cpp | 1 + src/ObjLoading/SearchPath/IWD.cpp | 2 ++ src/Unlinker/UnlinkerPaths.cpp | 1 + 3 files changed, 4 insertions(+) diff --git a/src/Linker/LinkerPaths.cpp b/src/Linker/LinkerPaths.cpp index 2e8eb6a7..660355a4 100644 --- a/src/Linker/LinkerPaths.cpp +++ b/src/Linker/LinkerPaths.cpp @@ -6,6 +6,7 @@ #include #include +#include #include #include #include diff --git a/src/ObjLoading/SearchPath/IWD.cpp b/src/ObjLoading/SearchPath/IWD.cpp index f3c2b0b8..ceea87a1 100644 --- a/src/ObjLoading/SearchPath/IWD.cpp +++ b/src/ObjLoading/SearchPath/IWD.cpp @@ -3,8 +3,10 @@ #include "ObjLoading.h" #include "Utils/FileToZlibWrapper.h" +#include #include #include +#include #include #include #include diff --git a/src/Unlinker/UnlinkerPaths.cpp b/src/Unlinker/UnlinkerPaths.cpp index 506c2ab8..781a1842 100644 --- a/src/Unlinker/UnlinkerPaths.cpp +++ b/src/Unlinker/UnlinkerPaths.cpp @@ -5,6 +5,7 @@ #include "Utils/StringUtils.h" #include +#include #include namespace fs = std::filesystem;