From 505cd3f0a7eab60a336c5dd22caea62b0562b7e8 Mon Sep 17 00:00:00 2001 From: modeco80 Date: Tue, 16 Aug 2022 03:29:17 -0500 Subject: [PATCH] Make stb paths not use system include path? --- src/ImageWriter.cpp | 2 +- src/stb_impl.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ImageWriter.cpp b/src/ImageWriter.cpp index 0ca7884..31a393c 100644 --- a/src/ImageWriter.cpp +++ b/src/ImageWriter.cpp @@ -8,7 +8,7 @@ #include #include -#include +#include "stb_image_write.h" namespace pixel { diff --git a/src/stb_impl.cpp b/src/stb_impl.cpp index 4b3853e..ee4a938 100644 --- a/src/stb_impl.cpp +++ b/src/stb_impl.cpp @@ -7,4 +7,4 @@ // #define STB_IMAGE_WRITE_IMPLEMENTATION -#include +#include "stb_image_write.h"