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>2019-01-25 00:30:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-25 00:30:33 +0300
commit2218bf02dd4f4f83a5eabbc34103a1c301bcbe7b (patch)
tree80fb9700116add3762c810883fcb3cca72e349e4 /intern
parente72fa714a800f851298dc29f736aa5231501dd0b (diff)
Cleanup: sort cmake file lists
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/CMakeLists.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/intern/ghost/CMakeLists.txt b/intern/ghost/CMakeLists.txt
index d8330d43c16..0b651b2cd6e 100644
--- a/intern/ghost/CMakeLists.txt
+++ b/intern/ghost/CMakeLists.txt
@@ -123,15 +123,15 @@ if(WITH_HEADLESS OR WITH_GHOST_SDL)
add_definitions(-DWITH_HEADLESS)
else()
list(APPEND SRC
+ intern/GHOST_ContextSDL.cpp
intern/GHOST_DisplayManagerSDL.cpp
intern/GHOST_SystemSDL.cpp
intern/GHOST_WindowSDL.cpp
- intern/GHOST_ContextSDL.cpp
+ intern/GHOST_ContextSDL.h
intern/GHOST_DisplayManagerSDL.h
intern/GHOST_SystemSDL.h
intern/GHOST_WindowSDL.h
- intern/GHOST_ContextSDL.h
)
add_definitions(-DWITH_GHOST_SDL)
endif()
@@ -177,13 +177,13 @@ elseif(WITH_X11)
list(APPEND SRC
intern/GHOST_DisplayManagerX11.cpp
intern/GHOST_SystemX11.cpp
- intern/GHOST_WindowX11.cpp
intern/GHOST_TaskbarX11.cpp
+ intern/GHOST_WindowX11.cpp
intern/GHOST_DisplayManagerX11.h
intern/GHOST_SystemX11.h
- intern/GHOST_WindowX11.h
intern/GHOST_TaskbarX11.h
+ intern/GHOST_WindowX11.h
)
if(NOT WITH_GL_EGL)
@@ -266,15 +266,15 @@ elseif(WIN32)
list(APPEND SRC
intern/GHOST_DisplayManagerWin32.cpp
+ intern/GHOST_DropTargetWin32.cpp
intern/GHOST_SystemWin32.cpp
intern/GHOST_WindowWin32.cpp
- intern/GHOST_DropTargetWin32.cpp
intern/GHOST_DisplayManagerWin32.h
intern/GHOST_DropTargetWin32.h
intern/GHOST_SystemWin32.h
- intern/GHOST_WindowWin32.h
intern/GHOST_TaskbarWin32.h
+ intern/GHOST_WindowWin32.h
)
if(NOT WITH_GL_EGL)
@@ -314,8 +314,8 @@ endif()
if(APPLE)
list(APPEND SRC
- intern/GHOST_SystemPathsCocoa.mm
intern/GHOST_SystemPathsCocoa.h
+ intern/GHOST_SystemPathsCocoa.mm
)
elseif(UNIX)