如何用cmake指定一个空白的path?

include_directories("D:/FMOD SoundSystem/FMOD Programmers API Win32/api") 

cmake处理上述path的体面方式是什么?

你必须用\来避开空格。

 D:/FMOD\ SoundSystem/FMOD\ Programmers\ API\ Win32/api 
 include_directories("D:/FMOD\ SoundSystem/FMOD\ Programmers\ API\ Win32/api")