mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 14:22:47 +08:00
61c055a6fc
* [brotli] add pkgconfig * [freetype] add pkgconfig and add dependency on brotli * [qt5-base] add new freetype dependency to brotli and zstd * [freetype] fix cmake paths * [freetype] removed renaming of include dir and unnecessary cmake fixes * [freetype-gl] fix glew include dir * [podofo] fix freetype search. * fixing wrong freetype stuff due to vcpkg owned wrong CMakeLists.txt ..... * fixing more freetype hidden issues. * [sfml] fix missing include * fix typo * [freetype] uncomment previous renaming of include folders * fix brotli linkage in static builds * remove added alias to avoid problems. * [freetype] add brotli to the wrapper * [lzokay] format manifest Co-authored-by: Nicole Mazzuca <mazzucan@outlook.com>
15 lines
409 B
Diff
15 lines
409 B
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index e821a49bc..c68264ef2 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -188,6 +188,9 @@ if(SFML_USE_SYSTEM_DEPS)
|
|
endforeach()
|
|
|
|
list(REMOVE_DUPLICATES CMAKE_IGNORE_PATH)
|
|
+
|
|
+ find_path(STB_INCLUDE_DIR stb.h)
|
|
+ include_directories(${STB_INCLUDE_DIR})
|
|
endif()
|
|
|
|
# Visual C++: remove warnings regarding SL security and algorithms on pointers
|