]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
fix: quote include directory for resource compiler 4269/head
authorluau-project <luau.project@gmail.com>
Mon, 27 Jan 2025 18:18:55 +0000 (15:18 -0300)
committerluau-project <luau.project@gmail.com>
Mon, 27 Jan 2025 18:18:55 +0000 (15:18 -0300)
build/cmake/lib/CMakeLists.txt

index c02822296a799f433b872ff735f224915735048d..2dcd249c66c1f5b1b24afa7b9cd8bcdb8a9f96e5 100644 (file)
@@ -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)