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
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/editors/sound/CMakeLists.txt')
-rw-r--r--source/blender/editors/sound/CMakeLists.txt40
1 files changed, 20 insertions, 20 deletions
diff --git a/source/blender/editors/sound/CMakeLists.txt b/source/blender/editors/sound/CMakeLists.txt
index 8b1caa0f306..c2a88041a85 100644
--- a/source/blender/editors/sound/CMakeLists.txt
+++ b/source/blender/editors/sound/CMakeLists.txt
@@ -16,13 +16,13 @@
# ***** END GPL LICENSE BLOCK *****
set(INC
- ../include
- ../../blenkernel
- ../../blenlib
- ../../makesdna
- ../../makesrna
- ../../windowmanager
- ../../../../intern/guardedalloc
+ ../include
+ ../../blenkernel
+ ../../blenlib
+ ../../makesdna
+ ../../makesrna
+ ../../windowmanager
+ ../../../../intern/guardedalloc
)
set(INC_SYS
@@ -30,32 +30,32 @@ set(INC_SYS
)
set(SRC
- sound_ops.c
+ sound_ops.c
- sound_intern.h
+ sound_intern.h
)
set(LIB
- bf_blenkernel
- bf_blenlib
+ bf_blenkernel
+ bf_blenlib
)
if(WITH_AUDASPACE)
- list(APPEND INC_SYS
- ${AUDASPACE_C_INCLUDE_DIRS}
- )
- list(APPEND LIB
- bf_intern_audaspace
- )
- add_definitions(-DWITH_AUDASPACE)
+ list(APPEND INC_SYS
+ ${AUDASPACE_C_INCLUDE_DIRS}
+ )
+ list(APPEND LIB
+ bf_intern_audaspace
+ )
+ add_definitions(-DWITH_AUDASPACE)
endif()
if(WITH_CODEC_FFMPEG)
- add_definitions(-DWITH_FFMPEG)
+ add_definitions(-DWITH_FFMPEG)
endif()
if(WITH_CODEC_SNDFILE)
- add_definitions(-DWITH_SNDFILE)
+ add_definitions(-DWITH_SNDFILE)
endif()
blender_add_lib(bf_editor_sound "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")