2014-08-19 07:34:00 -04:00
|
|
|
cmake_minimum_required(VERSION 2.8.7)
|
2013-08-29 23:35:09 -04:00
|
|
|
|
2013-09-26 17:34:48 -04:00
|
|
|
project(citra)
|
2013-08-29 23:35:09 -04:00
|
|
|
|
2014-05-19 23:48:14 -04:00
|
|
|
SET(CXX_COMPILE_FLAGS "-std=c++11")
|
2014-04-22 22:42:29 -04:00
|
|
|
|
2013-08-29 23:35:09 -04:00
|
|
|
# silence some spam
|
|
|
|
add_definitions(-Wno-attributes)
|
|
|
|
add_definitions(-DSINGLETHREADED)
|
2014-05-19 19:33:23 -04:00
|
|
|
add_definitions(${CXX_COMPILE_FLAGS})
|
2013-08-29 23:35:09 -04:00
|
|
|
|
2014-08-16 08:06:40 -04:00
|
|
|
find_package(PNG)
|
|
|
|
if (PNG_FOUND)
|
|
|
|
add_definitions(-DHAVE_PNG)
|
|
|
|
endif ()
|
|
|
|
|
2013-08-29 23:35:09 -04:00
|
|
|
# dependency checking
|
2014-05-17 02:03:10 -04:00
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/externals/cmake-modules/")
|
2013-08-29 23:35:09 -04:00
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/CMakeTests)
|
|
|
|
include(FindX11 REQUIRED)
|
2014-04-25 10:50:25 -04:00
|
|
|
find_package(PkgConfig REQUIRED)
|
2014-04-28 22:40:39 -04:00
|
|
|
find_package(GLEW REQUIRED)
|
|
|
|
find_package(OpenGL REQUIRED)
|
2014-04-25 10:50:25 -04:00
|
|
|
pkg_search_module(GLFW REQUIRED glfw3)
|
2013-08-29 23:35:09 -04:00
|
|
|
|
2014-05-19 18:19:36 -04:00
|
|
|
# corefoundation is required only on OSX
|
2014-04-28 22:40:39 -04:00
|
|
|
IF (APPLE)
|
2014-04-29 22:27:01 -04:00
|
|
|
FIND_LIBRARY(COREFOUNDATION_LIBRARY CoreFoundation)
|
2014-05-19 19:33:23 -04:00
|
|
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
|
|
|
|
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -stdlib=libc++")
|
2014-04-28 22:40:39 -04:00
|
|
|
ENDIF (APPLE)
|
|
|
|
|
2014-04-30 19:56:25 -04:00
|
|
|
#external includes
|
2014-04-09 23:28:43 -04:00
|
|
|
include_directories(${GLFW_INCLUDE_DIRS})
|
2014-04-30 19:56:25 -04:00
|
|
|
include_directories(${OPENGL_INCLUDE_DIR})
|
2014-05-19 19:33:23 -04:00
|
|
|
include_directories(${GLEW_INCLUDE_PATH})
|
2014-04-30 19:56:25 -04:00
|
|
|
|
2014-05-19 18:19:36 -04:00
|
|
|
# workaround for GLFW linking on OSX
|
2014-04-30 19:56:25 -04:00
|
|
|
link_directories(${GLFW_LIBRARY_DIRS})
|
|
|
|
|
2014-08-19 07:34:00 -04:00
|
|
|
option(DISABLE_QT "Disable Qt GUI" OFF)
|
|
|
|
option(USE_QT5 "Use Qt5 when available" ON)
|
|
|
|
if (NOT DISABLE_QT)
|
|
|
|
if(USE_QT5)
|
|
|
|
find_package(Qt5Gui)
|
|
|
|
find_package(Qt5Widgets)
|
|
|
|
find_package(Qt5OpenGL)
|
|
|
|
if(NOT Qt5Gui_FOUND OR NOT Qt5Widgets_FOUND OR NOT Qt5OpenGL_FOUND)
|
|
|
|
message("Qt5 libraries not found! Using Qt4 instead.")
|
|
|
|
set(USE_QT5 OFF)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
if(NOT USE_QT5)
|
|
|
|
include(FindQt4)
|
|
|
|
find_package(Qt4 COMPONENTS QtCore QtGui QtOpenGL)
|
|
|
|
|
|
|
|
if(QT4_FOUND AND QT_QTCORE_FOUND AND QT_QTGUI_FOUND AND QT_QTOPENGL_FOUND)
|
|
|
|
include(${QT_USE_FILE})
|
|
|
|
include_directories(${QT_INCLUDES})
|
|
|
|
else()
|
|
|
|
message("Qt4 libraries not found! Disabling Qt GUI")
|
|
|
|
set(DISABLE_QT ON)
|
|
|
|
endif()
|
2013-08-29 23:35:09 -04:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2014-04-23 21:43:57 -04:00
|
|
|
# generate git revision information
|
|
|
|
include(GetGitRevisionDescription)
|
|
|
|
get_git_head_revision(GIT_REF_SPEC GIT_REV)
|
|
|
|
git_describe(GIT_DESC --always --long --dirty)
|
2014-04-23 22:13:00 -04:00
|
|
|
git_branch_name(GIT_BRANCH)
|
2013-08-29 23:35:09 -04:00
|
|
|
|
|
|
|
# internal includes
|
2014-04-09 23:09:05 -04:00
|
|
|
include_directories(src)
|
2013-08-29 23:35:09 -04:00
|
|
|
|
|
|
|
# process subdirectories
|
2014-08-19 07:34:00 -04:00
|
|
|
if(NOT DISABLE_QT)
|
|
|
|
include_directories(externals/qhexedit)
|
2013-08-29 23:35:09 -04:00
|
|
|
add_subdirectory(externals/qhexedit)
|
|
|
|
endif()
|
|
|
|
add_subdirectory(src)
|