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
path: root/intern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-11-13 17:03:30 +0300
committerCampbell Barton <ideasman42@gmail.com>2014-11-13 17:30:32 +0300
commit9ebe44bc9c56edbe4ad00287da5d61b53fd57f39 (patch)
treee9481f63c47eddb3052a9a8552cbbe56a006f6d8 /intern
parent284726baeccd1442ed4ecd5908012e38be59dfc0 (diff)
Cleanup: cmake
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/CMakeLists.txt6
-rw-r--r--intern/locale/CMakeLists.txt4
2 files changed, 6 insertions, 4 deletions
diff --git a/intern/ghost/CMakeLists.txt b/intern/ghost/CMakeLists.txt
index 6f30cecab61..3ce269c2b4f 100644
--- a/intern/ghost/CMakeLists.txt
+++ b/intern/ghost/CMakeLists.txt
@@ -152,7 +152,7 @@ elseif(APPLE AND NOT WITH_X11)
intern/GHOST_WindowCocoa.h
)
- if (NOT WITH_GL_EGL)
+ if(NOT WITH_GL_EGL)
list(APPEND SRC
intern/GHOST_ContextCGL.mm
@@ -192,7 +192,7 @@ elseif(WITH_X11)
intern/GHOST_WindowX11.h
)
- if (NOT WITH_GL_EGL)
+ if(NOT WITH_GL_EGL)
list(APPEND SRC
intern/GHOST_ContextGLX.cpp
@@ -272,7 +272,7 @@ elseif(WIN32)
intern/GHOST_TaskbarWin32.h
)
- if (NOT WITH_GL_EGL)
+ if(NOT WITH_GL_EGL)
list(APPEND SRC
intern/GHOST_ContextWGL.cpp
diff --git a/intern/locale/CMakeLists.txt b/intern/locale/CMakeLists.txt
index 5d70c449234..5d933f326f7 100644
--- a/intern/locale/CMakeLists.txt
+++ b/intern/locale/CMakeLists.txt
@@ -38,7 +38,9 @@ set(SRC
if(APPLE)
# Cocoa code to read the locale on OSX
- list(APPEND SRC osx_user_locale.mm)
+ list(APPEND SRC
+ osx_user_locale.mm
+ )
endif()
if(WITH_HEADLESS)