Skip to content

Commit

Permalink
Merge pull request #398 from Sonicadvance1/Fix-Spaced-Build-Path
Browse files Browse the repository at this point in the history
Fixes build if the build path has spaces in it.
  • Loading branch information
delroth committed May 23, 2014
2 parents c6b7b4c + d710e3a commit d71e208
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/CMakeLists.txt
Expand Up @@ -41,7 +41,7 @@ macro(add_dolphin_library lib srcs libs)
add_dependencies(${lib} pch)
set_source_files_properties(
${srcs} PROPERTIES
COMPILE_FLAGS "-include ${pch_out_filename}"
COMPILE_FLAGS "-include '${pch_out_filename}'"
OBJECT_DEPENDS "${pch_lib_filename}")
endif(ENABLE_PCH)
endmacro(add_dolphin_library)
Expand Down

0 comments on commit d71e208

Please sign in to comment.