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:
authorJoerg Mueller <nexyon@gmail.com>2009-08-10 23:22:50 +0400
committerJoerg Mueller <nexyon@gmail.com>2009-08-10 23:22:50 +0400
commit2a58c840180887ff82cf7e0010ac56f1c5c26157 (patch)
tree38d6330586b1350711e991e156ec543c86212552 /source/blender/editors
parentc2239abdbd450fd9a757b08f9d3e9840defa7db5 (diff)
Stop changing the includes!
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/CMakeLists.txt2
-rw-r--r--source/blender/editors/space_sequencer/SConscript2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/CMakeLists.txt b/source/blender/editors/CMakeLists.txt
index dbf0332d3d9..ce9f01235a3 100644
--- a/source/blender/editors/CMakeLists.txt
+++ b/source/blender/editors/CMakeLists.txt
@@ -36,7 +36,7 @@ SET(INC ../windowmanager
../../kernel/gen_system ../readstreamglue
../quicktime ../../../intern/elbeem/extern
../../../intern/ghost ../../../intern/opennl/extern ../../../extern/glew/include ../../../intern/smoke/extern
- ../../../intern/audaspace
+ ../../../intern/audaspace/intern
../nodes
../gpu
../blenfont
diff --git a/source/blender/editors/space_sequencer/SConscript b/source/blender/editors/space_sequencer/SConscript
index 9e7ea185c25..7a3fb6982ef 100644
--- a/source/blender/editors/space_sequencer/SConscript
+++ b/source/blender/editors/space_sequencer/SConscript
@@ -6,6 +6,6 @@ sources = env.Glob('*.c')
incs = '../include ../../blenlib ../../blenkernel ../../blenfont ../../makesdna ../../imbuf'
incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include'
incs += ' ../../makesrna'
-incs += ' #/intern/audaspace'
+incs += ' #/intern/audaspace/intern'
env.BlenderLib ( 'bf_editors_space_sequencer', sources, Split(incs), [], libtype=['core'], priority=[100] )