Consider:
include_directories("D:/FMOD SoundSystem/FMOD Programmers API Win32/api")
What's the decent way to deal with a path like the above in CMake?
Consider:
include_directories("D:/FMOD SoundSystem/FMOD Programmers API Win32/api")
What's the decent way to deal with a path like the above in CMake?
You have to escape the spaces with a \
.
D:/FMOD\ SoundSystem/FMOD\ Programmers\ API\ Win32/api
include_directories("D:/FMOD\ SoundSystem/FMOD\ Programmers\ API\ Win32/api")