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:
authorCampbell Barton <campbell@blender.org>2022-02-23 04:30:56 +0300
committerCampbell Barton <campbell@blender.org>2022-02-23 04:31:46 +0300
commit4c423ccbd6f6f24d8cfdbc563127409cddc5fb55 (patch)
tree3ccd2b0a8d4eec451a5345911085c695173bc6e1 /intern/cycles/app
parent4addc1f31e3db456a81dda89245bd09cd3faf80f (diff)
CMake: include missing files
Also use SRC_ prefix for source variables so cmake_consistency_check.py detects these files as being known to CMake.
Diffstat (limited to 'intern/cycles/app')
-rw-r--r--intern/cycles/app/CMakeLists.txt10
1 files changed, 8 insertions, 2 deletions
diff --git a/intern/cycles/app/CMakeLists.txt b/intern/cycles/app/CMakeLists.txt
index ab38e103311..3248ef0dcda 100644
--- a/intern/cycles/app/CMakeLists.txt
+++ b/intern/cycles/app/CMakeLists.txt
@@ -34,8 +34,14 @@ endif()
if(WITH_CYCLES_STANDALONE AND WITH_CYCLES_STANDALONE_GUI)
add_definitions(${GL_DEFINITIONS})
- list(APPEND INC_SYS ${GLEW_INCLUDE_DIR} ${SDL2_INCLUDE_DIRS})
- list(APPEND LIBRARIES ${CYCLES_GL_LIBRARIES} ${SDL2_LIBRARIES})
+ list(APPEND INC_SYS
+ ${GLEW_INCLUDE_DIR}
+ ${SDL2_INCLUDE_DIRS}
+ )
+ list(APPEND LIBRARIES
+ ${CYCLES_GL_LIBRARIES}
+ ${SDL2_LIBRARIES}
+ )
endif()
# Common configuration.