diff options
author | Chris Robinson <[email protected]> | 2014-08-10 05:50:19 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-08-10 05:50:19 -0700 |
commit | 22856844c6a8e3e495680906936bc81f3ef25592 (patch) | |
tree | b52e79cbbb35c22618234597a3e34e4dfe040329 /CMakeLists.txt | |
parent | 357beb0570e414bf32cf6e37cd3f42e60a990df4 (diff) |
Properly set FluidSynth's include dir for older cmake versions
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 96e342f9..0be1126c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -691,7 +691,7 @@ IF(FLUIDSYNTH_FOUND) SET(HAVE_FLUIDSYNTH 1) ADD_BACKEND_LIBS(${FLUIDSYNTH_LIBRARIES}) IF(CMAKE_VERSION VERSION_LESS "2.8.8") - INCLUDE_DIRECTORIES(${ALSA_INCLUDE_DIRS}) + INCLUDE_DIRECTORIES(${FLUIDSYNTH_INCLUDE_DIR}) ENDIF() ENDIF() ENDIF() |