diff options
-rw-r--r-- | libcxx/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/CMakeLists.txt b/libcxx/CMakeLists.txt index fe40954e0bd..bfbba319d72 100644 --- a/libcxx/CMakeLists.txt +++ b/libcxx/CMakeLists.txt @@ -877,7 +877,7 @@ function(cxx_add_config_site target) if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC" OR "${CMAKE_CXX_SIMULATE_ID}" STREQUAL "MSVC") target_compile_options(${target} PUBLIC "/FI\"${site_config_path}\"") else() - target_compile_options(${target} PUBLIC "-include${site_config_path}") + target_compile_options(${target} PUBLIC -include "${site_config_path}") endif() endif() endfunction() |