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/gameengine/VideoTexture/CMakeLists.txt')
-rw-r--r--source/gameengine/VideoTexture/CMakeLists.txt10
1 files changed, 8 insertions, 2 deletions
diff --git a/source/gameengine/VideoTexture/CMakeLists.txt b/source/gameengine/VideoTexture/CMakeLists.txt
index b544139d4a7..201714be74a 100644
--- a/source/gameengine/VideoTexture/CMakeLists.txt
+++ b/source/gameengine/VideoTexture/CMakeLists.txt
@@ -46,6 +46,9 @@ set(INC
../../../intern/moto/include
../../../intern/guardedalloc
../../../intern/ffmpeg
+)
+
+set(INC_SYS
${GLEW_INCLUDE_PATH}
)
@@ -87,9 +90,12 @@ set(SRC
)
if(WITH_CODEC_FFMPEG)
- set(INC ${INC} ${FFMPEG_INC} ${PTHREADS_INC})
+ list(APPEND INC_SYS
+ ${FFMPEG_INC}
+ ${PTHREADS_INC}
+ )
add_definitions(-DWITH_FFMPEG)
add_definitions(-D__STDC_CONSTANT_MACROS)
endif()
-blender_add_lib(ge_videotex "${SRC}" "${INC}")
+blender_add_lib(ge_videotex "${SRC}" "${INC}" "${INC_SYS}")