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:49:51 +0300
commit4b8b7c821d46528abd7bf809b1cbc5c44a44796c (patch)
treed61a81c7c686b79512ed8f43552f0d177b3a9ce9 /intern
parent6260b3c15e5afd0a38c97a16d47665833f69a79f (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 1af0defc4ed..546642a53ba 100644
--- a/intern/ghost/CMakeLists.txt
+++ b/intern/ghost/CMakeLists.txt
@@ -122,15 +122,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()
@@ -176,13 +176,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)
@@ -265,15 +265,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)
@@ -313,8 +313,8 @@ endif()
if(APPLE)
list(APPEND SRC
- intern/GHOST_SystemPathsCocoa.mm
intern/GHOST_SystemPathsCocoa.h
+ intern/GHOST_SystemPathsCocoa.mm
)
elseif(UNIX)