Using CMake's include_directories command with white spaces
问题 I am using CMake to build my project and I have the following line: include_directories(${LLVM_INCLUDE_DIRS}) which, after evaluating LLVM_INCLUDE_DIRS , evaluates to: include_directories(C:\Program Files\LLVM\include) The problem is that this is being considered two include directories, "C:\Program" and "Files\LLVM\include". Any idea how can I solve this problem? I tried using quotation marks, but it didn't work. EDIT: It turned out that the problem is in the file llvm-3.0\share\llvm\cmake