Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/CMake
diff options
context:
space:
mode:
authorJoerg Mueller <nexyon@gmail.com>2009-08-16 18:53:11 +0400
committerJoerg Mueller <nexyon@gmail.com>2009-08-16 18:53:11 +0400
commit1ee26d45b58c4544c25899763e83ec06349ad780 (patch)
treec71e27b732e296e06e1f5cc8159614f7635c8876 /CMake
parentf250a92808a10f81abef1459223dbb5be40753b8 (diff)
Added jack audio support, building with cmake only currently, feel free to add scons and maybe cmake.
Diffstat (limited to 'CMake')
-rw-r--r--CMake/macros.cmake6
1 files changed, 6 insertions, 0 deletions
diff --git a/CMake/macros.cmake b/CMake/macros.cmake
index dfff2722b83..e6c4664b68d 100644
--- a/CMake/macros.cmake
+++ b/CMake/macros.cmake
@@ -54,6 +54,9 @@ MACRO(SETUP_LIBDIRS)
IF(WITH_OPENAL)
LINK_DIRECTORIES(${OPENAL_LIBPATH})
ENDIF(WITH_OPENAL)
+ IF(WITH_JACK)
+ LINK_DIRECTORIES(${JACK_LIBPATH})
+ ENDIF(WITH_JACK)
IF(WITH_FFTW3)
LINK_DIRECTORIES(${FFTW3_LIBPATH})
ENDIF(WITH_FFTW3)
@@ -108,6 +111,9 @@ MACRO(SETUP_LIBLINKS
IF(WITH_OPENAL)
TARGET_LINK_LIBRARIES(${target} ${OPENAL_LIBRARY})
ENDIF(WITH_OPENAL)
+ IF(WITH_JACK)
+ TARGET_LINK_LIBRARIES(${target} ${JACK_LIB})
+ ENDIF(WITH_JACK)
IF(WITH_SDL)
TARGET_LINK_LIBRARIES(${target} ${SDL_LIBRARY})
ENDIF(WITH_SDL)