From: luau-project Date: Mon, 27 Jan 2025 18:18:55 +0000 (-0300) Subject: fix: quote include directory for resource compiler X-Git-Tag: v1.5.7^2~16^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be1bf2469e44952efb318f80b781e82e8e9e5183;p=thirdparty%2Fzstd.git fix: quote include directory for resource compiler --- diff --git a/build/cmake/lib/CMakeLists.txt b/build/cmake/lib/CMakeLists.txt index c02822296..2dcd249c6 100644 --- a/build/cmake/lib/CMakeLists.txt +++ b/build/cmake/lib/CMakeLists.txt @@ -118,7 +118,7 @@ endmacro () # Define directories containing the library's public headers set(PUBLIC_INCLUDE_DIRS ${LIBRARY_DIR}) -set(CMAKE_RC_FLAGS "${CMAKE_RC_FLAGS} /I ${LIBRARY_DIR}") +set(CMAKE_RC_FLAGS "${CMAKE_RC_FLAGS} /I \"${LIBRARY_DIR}\"") # Split project to static and shared libraries build set(library_targets) if (ZSTD_BUILD_SHARED)