mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 15:29:06 +08:00
5bd036cf5a
Extensive modification have been done to support building with external dependencies. The biggest change is a new CMake-based build system. Several patches are based on the equivalent ones used in Debian packaging, see http://sources.debian.net/patches/freeimage . The only dependency for which the internal version is still used is OpenEXR.
19 lines
569 B
Diff
19 lines
569 B
Diff
diff --git a/Source/FreeImage/PluginWebP.cpp b/Source/FreeImage/PluginWebP.cpp
|
|
index 9fb0b69..c401447 100644
|
|
--- a/Source/FreeImage/PluginWebP.cpp
|
|
+++ b/Source/FreeImage/PluginWebP.cpp
|
|
@@ -24,10 +24,9 @@
|
|
|
|
#include "../Metadata/FreeImageTag.h"
|
|
|
|
-#include "../LibWebP/src/webp/decode.h"
|
|
-#include "../LibWebP/src/webp/encode.h"
|
|
-#include "../LibWebP/src/enc/vp8enci.h"
|
|
-#include "../LibWebP/src/webp/mux.h"
|
|
+#include <webp/decode.h>
|
|
+#include <webp/encode.h>
|
|
+#include <webp/mux.h>
|
|
|
|
// ==========================================================
|
|
// Plugin Interface
|