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/creator/CMakeLists.txt')
-rw-r--r--source/creator/CMakeLists.txt14
1 files changed, 10 insertions, 4 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index e039d67515e..9f3106153ee 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -90,10 +90,14 @@ IF(CMAKE_SYSTEM_NAME MATCHES "Linux")
ENDIF(CMAKE_SYSTEM_NAME MATCHES "Linux")
# Setup the exe sources and buildinfo
-SET(EXESRC creator.c)
+SET(SRC
+ creator.c
+)
IF(WIN32 AND NOT UNIX)
- LIST(APPEND EXESRC ../icons/winblender.rc)
+ LIST(APPEND SRC
+ ../icons/winblender.rc
+ )
ENDIF(WIN32 AND NOT UNIX)
IF(WITH_BUILDINFO)
@@ -112,12 +116,14 @@ IF(WITH_BUILDINFO)
-DBUILD_SYSTEM="CMake"
)
- LIST(APPEND EXESRC buildinfo.c)
+ LIST(APPEND SRC
+ buildinfo.c
+ )
ENDIF(WITH_BUILDINFO)
MESSAGE(STATUS "Configuring blender")
-ADD_EXECUTABLE(blender ${EXETYPE} ${EXESRC})
+ADD_EXECUTABLE(blender ${EXETYPE} ${SRC})
# Post build steps for bundling/packaging.