2008-01-07 19:13:47 +00:00
|
|
|
# ***** BEGIN GPL LICENSE BLOCK *****
|
2006-11-17 02:27:12 +00:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
2008-01-07 19:13:47 +00:00
|
|
|
# of the License, or (at your option) any later version.
|
2006-11-17 02:27:12 +00:00
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
2010-02-12 13:34:04 +00:00
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2006-11-17 02:27:12 +00:00
|
|
|
#
|
|
|
|
# The Original Code is Copyright (C) 2006, Blender Foundation
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# The Original Code is: all of this file.
|
|
|
|
#
|
|
|
|
# Contributor(s): Jacques Beaurain.
|
|
|
|
#
|
2008-01-07 19:13:47 +00:00
|
|
|
# ***** END GPL LICENSE BLOCK *****
|
2006-11-17 02:27:12 +00:00
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
set(INC
|
2010-05-15 12:16:19 +00:00
|
|
|
.
|
|
|
|
../string
|
|
|
|
../../source/blender/imbuf
|
|
|
|
../../source/blender/makesdna
|
2011-05-31 01:15:44 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set(INC_SYS
|
2011-05-09 14:41:44 +00:00
|
|
|
${GLEW_INCLUDE_PATH}
|
2010-05-15 12:16:19 +00:00
|
|
|
)
|
2006-11-17 02:27:12 +00:00
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
set(SRC
|
2010-11-29 04:35:56 +00:00
|
|
|
intern/GHOST_Buttons.cpp
|
|
|
|
intern/GHOST_C-api.cpp
|
2011-07-17 09:11:13 +00:00
|
|
|
intern/GHOST_CallbackEventConsumer.cpp
|
2010-11-29 04:35:56 +00:00
|
|
|
intern/GHOST_DisplayManager.cpp
|
|
|
|
intern/GHOST_EventManager.cpp
|
|
|
|
intern/GHOST_ISystem.cpp
|
2011-01-05 14:00:14 +00:00
|
|
|
intern/GHOST_ISystemPaths.cpp
|
2010-11-29 04:35:56 +00:00
|
|
|
intern/GHOST_ModifierKeys.cpp
|
|
|
|
intern/GHOST_Path-api.cpp
|
|
|
|
intern/GHOST_Rect.cpp
|
|
|
|
intern/GHOST_System.cpp
|
|
|
|
intern/GHOST_TimerManager.cpp
|
|
|
|
intern/GHOST_Window.cpp
|
|
|
|
intern/GHOST_WindowManager.cpp
|
|
|
|
|
|
|
|
GHOST_C-api.h
|
|
|
|
GHOST_IEvent.h
|
|
|
|
GHOST_IEventConsumer.h
|
|
|
|
GHOST_ISystem.h
|
2011-01-25 08:35:10 +00:00
|
|
|
GHOST_ISystemPaths.h
|
2010-11-29 04:35:56 +00:00
|
|
|
GHOST_ITimerTask.h
|
|
|
|
GHOST_IWindow.h
|
|
|
|
GHOST_Path-api.h
|
|
|
|
GHOST_Rect.h
|
|
|
|
GHOST_Types.h
|
2011-07-17 09:11:13 +00:00
|
|
|
|
2010-11-29 04:35:56 +00:00
|
|
|
intern/GHOST_Buttons.h
|
|
|
|
intern/GHOST_CallbackEventConsumer.h
|
|
|
|
intern/GHOST_Debug.h
|
|
|
|
intern/GHOST_DisplayManager.h
|
|
|
|
intern/GHOST_Event.h
|
|
|
|
intern/GHOST_EventButton.h
|
|
|
|
intern/GHOST_EventCursor.h
|
|
|
|
intern/GHOST_EventDragnDrop.h
|
|
|
|
intern/GHOST_EventKey.h
|
|
|
|
intern/GHOST_EventManager.h
|
|
|
|
intern/GHOST_EventString.h
|
|
|
|
intern/GHOST_EventTrackpad.h
|
|
|
|
intern/GHOST_EventWheel.h
|
|
|
|
intern/GHOST_ModifierKeys.h
|
|
|
|
intern/GHOST_System.h
|
2011-01-25 08:35:10 +00:00
|
|
|
intern/GHOST_SystemPaths.h
|
2010-11-29 04:35:56 +00:00
|
|
|
intern/GHOST_TimerManager.h
|
|
|
|
intern/GHOST_TimerTask.h
|
|
|
|
intern/GHOST_Window.h
|
|
|
|
intern/GHOST_WindowManager.h
|
2010-05-15 12:16:19 +00:00
|
|
|
)
|
2006-11-17 02:27:12 +00:00
|
|
|
|
2011-07-13 06:04:54 +00:00
|
|
|
if(WITH_GHOST_DEBUG)
|
2011-06-04 14:12:55 +00:00
|
|
|
list(APPEND SRC
|
2011-07-13 06:04:54 +00:00
|
|
|
intern/GHOST_EventPrinter.cpp
|
|
|
|
|
|
|
|
intern/GHOST_EventPrinter.h
|
2011-06-04 14:12:55 +00:00
|
|
|
)
|
2011-07-13 06:04:54 +00:00
|
|
|
add_definitions(-DWITH_GHOST_DEBUG)
|
|
|
|
endif()
|
|
|
|
|
2011-08-02 05:52:27 +00:00
|
|
|
if(WITH_INPUT_NDOF)
|
|
|
|
add_definitions(-DWITH_INPUT_NDOF)
|
2011-08-03 07:30:24 +00:00
|
|
|
|
|
|
|
list(APPEND SRC
|
|
|
|
intern/GHOST_NDOFManager.cpp
|
|
|
|
|
|
|
|
intern/GHOST_EventNDOF.h
|
|
|
|
intern/GHOST_NDOFManager.h
|
|
|
|
)
|
|
|
|
|
2011-08-02 06:32:53 +00:00
|
|
|
list(APPEND INC_SYS
|
|
|
|
${NDOF_INCLUDE_DIRS}
|
|
|
|
)
|
2011-08-02 05:52:27 +00:00
|
|
|
endif()
|
2011-07-13 06:04:54 +00:00
|
|
|
|
|
|
|
if(WITH_HEADLESS OR WITH_GHOST_SDL)
|
2011-07-12 13:17:54 +00:00
|
|
|
if(WITH_HEADLESS)
|
|
|
|
list(APPEND SRC
|
|
|
|
intern/GHOST_DisplayManagerNULL.h
|
|
|
|
intern/GHOST_SystemNULL.h
|
|
|
|
intern/GHOST_WindowNULL.h
|
|
|
|
)
|
|
|
|
add_definitions(-DWITH_HEADLESS)
|
|
|
|
else()
|
|
|
|
list(APPEND SRC
|
|
|
|
intern/GHOST_DisplayManagerSDL.cpp
|
|
|
|
intern/GHOST_SystemSDL.cpp
|
|
|
|
intern/GHOST_WindowSDL.cpp
|
|
|
|
|
|
|
|
intern/GHOST_DisplayManagerSDL.h
|
|
|
|
intern/GHOST_SystemSDL.h
|
|
|
|
intern/GHOST_WindowSDL.h
|
|
|
|
)
|
2011-07-13 06:04:54 +00:00
|
|
|
add_definitions(-DWITH_GHOST_SDL)
|
2011-07-12 13:17:54 +00:00
|
|
|
endif()
|
|
|
|
|
2011-06-04 14:12:55 +00:00
|
|
|
|
2014-08-05 19:39:41 +00:00
|
|
|
# ack, this is still system dependent
|
2011-06-04 14:12:55 +00:00
|
|
|
if(APPLE)
|
2013-11-05 14:09:17 +00:00
|
|
|
list(APPEND SRC
|
|
|
|
intern/GHOST_SystemPathsCocoa.mm
|
|
|
|
intern/GHOST_SystemPathsCocoa.h
|
|
|
|
)
|
2012-06-15 20:59:00 +00:00
|
|
|
|
2011-06-04 14:12:55 +00:00
|
|
|
elseif(UNIX)
|
|
|
|
list(APPEND SRC
|
|
|
|
intern/GHOST_SystemPathsX11.cpp
|
|
|
|
intern/GHOST_SystemPathsX11.h
|
|
|
|
)
|
2011-08-08 03:31:25 +00:00
|
|
|
|
|
|
|
if(NOT WITH_INSTALL_PORTABLE)
|
|
|
|
add_definitions(-DPREFIX="${CMAKE_INSTALL_PREFIX}")
|
|
|
|
endif()
|
2011-06-04 14:12:55 +00:00
|
|
|
|
2012-06-15 20:59:00 +00:00
|
|
|
elseif(WIN32)
|
2011-06-04 14:12:55 +00:00
|
|
|
list(APPEND SRC
|
|
|
|
intern/GHOST_SystemPathsWin32.cpp
|
|
|
|
|
|
|
|
intern/GHOST_SystemPathsWin32.h
|
|
|
|
)
|
2012-06-15 20:59:00 +00:00
|
|
|
|
|
|
|
list(APPEND INC
|
|
|
|
../utfconv
|
|
|
|
)
|
2011-06-04 14:12:55 +00:00
|
|
|
endif()
|
|
|
|
|
2012-05-11 14:17:49 +00:00
|
|
|
if(NOT WITH_HEADLESS)
|
|
|
|
list(APPEND INC_SYS
|
|
|
|
${SDL_INCLUDE_DIR}
|
|
|
|
)
|
|
|
|
endif()
|
2011-07-12 13:17:54 +00:00
|
|
|
|
2011-06-04 14:12:55 +00:00
|
|
|
elseif(APPLE)
|
2013-11-05 14:09:17 +00:00
|
|
|
list(APPEND SRC
|
|
|
|
intern/GHOST_DisplayManagerCocoa.mm
|
|
|
|
intern/GHOST_SystemCocoa.mm
|
|
|
|
intern/GHOST_SystemPathsCocoa.mm
|
|
|
|
intern/GHOST_WindowCocoa.mm
|
|
|
|
|
|
|
|
intern/GHOST_DisplayManagerCocoa.h
|
|
|
|
intern/GHOST_SystemCocoa.h
|
|
|
|
intern/GHOST_SystemPathsCocoa.h
|
|
|
|
intern/GHOST_WindowCocoa.h
|
|
|
|
)
|
2011-08-02 05:52:27 +00:00
|
|
|
|
2013-11-05 14:09:17 +00:00
|
|
|
if(WITH_INPUT_NDOF)
|
2010-12-08 08:43:06 +00:00
|
|
|
list(APPEND SRC
|
2013-11-05 14:09:17 +00:00
|
|
|
intern/GHOST_NDOFManagerCocoa.mm
|
|
|
|
intern/GHOST_NDOFManagerCocoa.h
|
|
|
|
)
|
|
|
|
list(APPEND SRC_NDOF3DCONNEXION
|
|
|
|
intern/GHOST_NDOFManager3Dconnexion.c
|
|
|
|
intern/GHOST_NDOFManager3Dconnexion.h
|
2010-05-15 12:16:19 +00:00
|
|
|
)
|
2010-12-08 08:43:06 +00:00
|
|
|
endif()
|
2009-12-03 12:16:00 +00:00
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
if(WITH_CODEC_QUICKTIME)
|
|
|
|
add_definitions(-DWITH_QUICKTIME)
|
|
|
|
endif()
|
2010-05-15 12:16:19 +00:00
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
elseif(UNIX)
|
2011-03-25 04:56:48 +00:00
|
|
|
|
2011-07-16 23:01:14 +00:00
|
|
|
list(APPEND INC_SYS
|
|
|
|
${X11_X11_INCLUDE_PATH}
|
|
|
|
)
|
2010-05-15 12:16:19 +00:00
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
list(APPEND SRC
|
2010-11-29 04:35:56 +00:00
|
|
|
intern/GHOST_DisplayManagerX11.cpp
|
|
|
|
intern/GHOST_SystemX11.cpp
|
2011-01-05 14:00:14 +00:00
|
|
|
intern/GHOST_SystemPathsX11.cpp
|
2010-11-29 04:35:56 +00:00
|
|
|
intern/GHOST_WindowX11.cpp
|
|
|
|
|
|
|
|
intern/GHOST_DisplayManagerX11.h
|
|
|
|
intern/GHOST_SystemX11.h
|
2011-01-05 14:00:14 +00:00
|
|
|
intern/GHOST_SystemPathsX11.h
|
2010-11-29 04:35:56 +00:00
|
|
|
intern/GHOST_WindowX11.h
|
2012-02-17 16:58:09 +00:00
|
|
|
)
|
|
|
|
|
2012-02-17 20:51:39 +00:00
|
|
|
if(WITH_GHOST_XDND)
|
|
|
|
add_definitions(-DWITH_XDND)
|
|
|
|
|
|
|
|
list(APPEND INC
|
|
|
|
../../extern/xdnd
|
|
|
|
)
|
|
|
|
|
|
|
|
list(APPEND SRC
|
|
|
|
intern/GHOST_DropTargetX11.cpp
|
|
|
|
|
|
|
|
intern/GHOST_DropTargetX11.h
|
|
|
|
)
|
|
|
|
endif()
|
2010-07-15 20:25:09 +00:00
|
|
|
|
2011-02-19 23:51:55 +00:00
|
|
|
if(X11_XF86keysym_INCLUDE_PATH)
|
|
|
|
add_definitions(-DWITH_XF86KEYSYM)
|
2011-07-16 23:01:14 +00:00
|
|
|
list(APPEND INC_SYS
|
|
|
|
${X11_XF86keysym_INCLUDE_PATH}
|
|
|
|
)
|
2011-02-19 23:51:55 +00:00
|
|
|
endif()
|
|
|
|
|
2012-01-02 12:25:14 +00:00
|
|
|
if(WITH_X11_XF86VMODE)
|
|
|
|
add_definitions(-DWITH_X11_XF86VMODE)
|
|
|
|
list(APPEND INC_SYS
|
|
|
|
${X11_xf86vmode_INCLUDE_PATH}
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2011-08-02 05:52:27 +00:00
|
|
|
if(WITH_INPUT_NDOF)
|
|
|
|
list(APPEND SRC
|
|
|
|
intern/GHOST_NDOFManagerX11.cpp
|
|
|
|
|
|
|
|
intern/GHOST_NDOFManagerX11.h
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2011-08-08 03:31:25 +00:00
|
|
|
if(NOT WITH_INSTALL_PORTABLE)
|
|
|
|
add_definitions(-DPREFIX="${CMAKE_INSTALL_PREFIX}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_X11_XINPUT)
|
|
|
|
add_definitions(-DWITH_X11_XINPUT)
|
2013-01-31 11:05:09 +00:00
|
|
|
list(APPEND INC_SYS
|
|
|
|
${X11_Xinput_INCLUDE_PATH}
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
elseif(WIN32)
|
2011-09-27 12:08:35 +00:00
|
|
|
## Warnings as errors, this is too strict!
|
|
|
|
#if(MSVC)
|
|
|
|
# set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /WX")
|
|
|
|
#endif()
|
2010-11-21 13:41:43 +00:00
|
|
|
|
2011-07-16 23:01:14 +00:00
|
|
|
list(APPEND INC_SYS
|
|
|
|
${WINTAB_INC}
|
|
|
|
)
|
2010-11-22 23:25:21 +00:00
|
|
|
|
2012-03-20 02:17:37 +00:00
|
|
|
list(APPEND INC
|
|
|
|
../utfconv
|
|
|
|
)
|
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
list(APPEND SRC
|
2010-11-29 04:35:56 +00:00
|
|
|
intern/GHOST_DisplayManagerWin32.cpp
|
|
|
|
intern/GHOST_SystemWin32.cpp
|
2011-01-05 14:00:14 +00:00
|
|
|
intern/GHOST_SystemPathsWin32.cpp
|
2010-11-29 04:35:56 +00:00
|
|
|
intern/GHOST_WindowWin32.cpp
|
|
|
|
intern/GHOST_DropTargetWin32.cpp
|
|
|
|
|
|
|
|
intern/GHOST_DisplayManagerWin32.h
|
|
|
|
intern/GHOST_DropTargetWin32.h
|
|
|
|
intern/GHOST_SystemWin32.h
|
2011-01-05 14:00:14 +00:00
|
|
|
intern/GHOST_SystemPathsWin32.h
|
2010-11-29 04:35:56 +00:00
|
|
|
intern/GHOST_WindowWin32.h
|
2011-01-26 12:23:02 +00:00
|
|
|
intern/GHOST_TaskbarWin32.h
|
2010-11-21 13:41:43 +00:00
|
|
|
)
|
2011-08-02 05:52:27 +00:00
|
|
|
|
|
|
|
if(WITH_INPUT_NDOF)
|
|
|
|
list(APPEND SRC
|
|
|
|
intern/GHOST_NDOFManagerWin32.cpp
|
|
|
|
|
|
|
|
intern/GHOST_NDOFManagerWin32.h
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
endif()
|
2006-11-17 02:27:12 +00:00
|
|
|
|
2013-07-31 22:39:17 +00:00
|
|
|
add_definitions(-DGLEW_STATIC)
|
|
|
|
|
2011-05-31 01:15:44 +00:00
|
|
|
blender_add_lib(bf_intern_ghost "${SRC}" "${INC}" "${INC_SYS}")
|
2013-09-13 21:42:52 +00:00
|
|
|
|
2013-09-14 12:04:10 +00:00
|
|
|
# workaround for apple clang mangling extern "C" symbols
|
2013-11-05 15:48:26 +00:00
|
|
|
if(WITH_INPUT_NDOF AND APPLE)
|
2013-09-14 12:04:10 +00:00
|
|
|
blender_add_lib(bf_intern_ghostndof3dconnexion "${SRC_NDOF3DCONNEXION}" "${INC}" "${INC_SYS}")
|
2013-09-13 15:18:17 +00:00
|
|
|
endif()
|