From 461e21f66dd331f5d6d47b4abbf9f15525ddfaec Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Sun, 12 May 2019 10:56:59 -1000 Subject: [PATCH] Fix Windows build with external zlib assimp.rc contains an include with a double-parent header search. In a default build configuration, this is resolved via the configuration header path generated for in-tree zlib. When external zlib is used, this header search path is not provided to the RC compiler, therefore fails to find revision.h. This is solved by simply including "revision.h" since the root of the binary directory is already used as a search path. --- code/res/assimp.rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/res/assimp.rc b/code/res/assimp.rc index ae0c87b8a..14ffdf4f5 100644 --- a/code/res/assimp.rc +++ b/code/res/assimp.rc @@ -1,7 +1,7 @@ // Microsoft Visual C++ generated resource script. // #include "resource.h" -#include "..\..\revision.h" +#include "revision.h" #define APSTUDIO_READONLY_SYMBOLS /////////////////////////////////////////////////////////////////////////////