2013-05-14 19:40:21 +00:00
|
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
|
|
|
|
project(emulationstation)
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
#add local find scripts to CMAKE path
|
|
|
|
LIST(APPEND CMAKE_MODULE_PATH
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMake/Utils
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMake/Packages
|
|
|
|
)
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
#set up OpenGL system variable
|
|
|
|
set(GLSystem "Desktop OpenGL" CACHE STRING "The OpenGL system to be used")
|
|
|
|
set_property(CACHE GLSystem PROPERTY STRINGS "Desktop OpenGL" "OpenGL ES")
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
#check if we're running on Raspberry Pi
|
|
|
|
MESSAGE("Looking for bcm_host.h")
|
|
|
|
if(EXISTS "/opt/vc/include/bcm_host.h")
|
|
|
|
MESSAGE("bcm_host.h found")
|
|
|
|
set(BCMHOST found)
|
|
|
|
set(GLSystem "OpenGL ES")
|
|
|
|
else()
|
|
|
|
MESSAGE("bcm_host.h not found")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
#finding necessary packages
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
if(${GLSystem} MATCHES "Desktop OpenGL")
|
|
|
|
find_package(OpenGL REQUIRED)
|
|
|
|
else()
|
|
|
|
find_package(OpenGLES REQUIRED)
|
|
|
|
endif()
|
2013-12-15 00:52:12 +00:00
|
|
|
find_package(Freetype REQUIRED)
|
2013-05-14 19:40:21 +00:00
|
|
|
find_package(FreeImage REQUIRED)
|
2013-08-18 17:17:24 +00:00
|
|
|
find_package(SDL2 REQUIRED)
|
2013-09-30 19:33:50 +00:00
|
|
|
find_package(Boost REQUIRED COMPONENTS system filesystem regex date_time)
|
2013-07-11 08:47:49 +00:00
|
|
|
find_package(Eigen3 REQUIRED)
|
2013-10-10 18:11:01 +00:00
|
|
|
find_package(CURL REQUIRED)
|
2013-05-14 19:40:21 +00:00
|
|
|
|
2013-05-22 17:11:10 +00:00
|
|
|
#add ALSA for Linux
|
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
|
|
|
find_package(ALSA REQUIRED)
|
|
|
|
endif()
|
|
|
|
|
2013-05-14 19:40:21 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
#set up compiler flags and excutable names
|
|
|
|
if(DEFINED BCMHOST)
|
|
|
|
add_definitions(-D_RPI_)
|
|
|
|
endif()
|
|
|
|
|
2013-09-15 17:56:47 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
#set up _WIN32_WINNT variable (used by boost::asio) on Windows
|
|
|
|
macro(get_WIN32_WINNT version)
|
|
|
|
if (WIN32 AND CMAKE_SYSTEM_VERSION)
|
|
|
|
set(ver ${CMAKE_SYSTEM_VERSION})
|
|
|
|
string(REPLACE "." "" ver ${ver})
|
|
|
|
string(REGEX REPLACE "([0-9])" "0\\1" ver ${ver})
|
|
|
|
|
|
|
|
set(${version} "0x${ver}")
|
|
|
|
endif()
|
|
|
|
endmacro()
|
|
|
|
|
|
|
|
if(WIN32)
|
|
|
|
get_WIN32_WINNT(ver)
|
|
|
|
add_definitions(-D_WIN32_WINNT=${ver})
|
|
|
|
endif()
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
|
2013-05-14 19:40:21 +00:00
|
|
|
if(MSVC)
|
|
|
|
set(CMAKE_DEBUG_POSTFIX "d")
|
|
|
|
add_definitions(-D_CRT_SECURE_NO_DEPRECATE)
|
|
|
|
add_definitions(-D_CRT_NONSTDC_NO_DEPRECATE)
|
2013-05-17 09:58:43 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP") #multi-processor compilation
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /MP") #multi-processor compilation
|
2013-05-14 19:40:21 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
2013-05-24 09:36:29 +00:00
|
|
|
#check for G++ 4.7+
|
|
|
|
execute_process(COMMAND ${CMAKE_CXX_COMPILER} -dumpversion OUTPUT_VARIABLE G++_VERSION)
|
|
|
|
if (G++_VERSION VERSION_LESS 4.7)
|
|
|
|
message(SEND_ERROR "You need at least G++ 4.7 to compile EmulationStation!")
|
2013-05-22 17:15:44 +00:00
|
|
|
endif()
|
|
|
|
#set up compiler flags for GCC
|
2013-10-08 21:31:29 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wno-attributes") #support C++11 for std::, optimize
|
2013-05-15 07:40:16 +00:00
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -s") #strip binary
|
2013-05-14 19:40:21 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(${GLSystem} MATCHES "Desktop OpenGL")
|
|
|
|
add_definitions(-DUSE_OPENGL_DESKTOP)
|
|
|
|
else()
|
|
|
|
add_definitions(-DUSE_OPENGL_ES)
|
|
|
|
endif()
|
|
|
|
|
2013-07-10 11:32:51 +00:00
|
|
|
add_definitions(-DEIGEN_DONT_ALIGN)
|
|
|
|
|
2013-05-14 19:40:21 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
#add include directories
|
|
|
|
set(ES_INCLUDE_DIRS
|
|
|
|
${FREETYPE_INCLUDE_DIRS}
|
|
|
|
${FreeImage_INCLUDE_DIRS}
|
2013-08-18 17:17:24 +00:00
|
|
|
${SDL2_INCLUDE_DIR}
|
2013-05-14 19:40:21 +00:00
|
|
|
${Boost_INCLUDE_DIRS}
|
2013-07-11 08:47:49 +00:00
|
|
|
${EIGEN3_INCLUDE_DIR}
|
2013-10-10 18:11:01 +00:00
|
|
|
${CURL_INCLUDE_DIR}
|
2013-05-14 19:40:21 +00:00
|
|
|
)
|
|
|
|
|
2013-05-22 17:11:10 +00:00
|
|
|
#add ALSA for Linux
|
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
|
|
|
LIST(APPEND ES_INCLUDE_DIRS
|
|
|
|
${ALSA_INCLUDE_DIRS}
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2013-05-14 19:40:21 +00:00
|
|
|
if(DEFINED BCMHOST)
|
|
|
|
LIST(APPEND ES_INCLUDE_DIRS
|
|
|
|
"/opt/vc/include"
|
|
|
|
"/opt/vc/include/interface/vcos"
|
|
|
|
"/opt/vc/include/interface/vmcs_host/linux"
|
|
|
|
"/opt/vc/include/interface/vcos/pthreads"
|
|
|
|
)
|
2013-05-15 07:50:59 +00:00
|
|
|
else()
|
|
|
|
if(${GLSystem} MATCHES "Desktop OpenGL")
|
|
|
|
LIST(APPEND ES_INCLUDE_DIRS
|
|
|
|
${OPENGL_INCLUDE_DIR}
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
LIST(APPEND ES_INCLUDE_DIRS
|
|
|
|
${OPENGLES_INCLUDE_DIR}
|
|
|
|
)
|
|
|
|
endif()
|
2013-05-14 19:40:21 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
#define basic sources and headers
|
|
|
|
set(ES_HEADERS
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/AudioManager.h
|
2013-05-16 19:26:19 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/EmulationStation.h
|
2013-05-14 19:40:21 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/FileData.h
|
2013-11-06 01:41:49 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/FileSorts.h
|
2013-06-02 15:08:32 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/GuiComponent.h
|
2013-09-15 17:56:47 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/HttpReq.h
|
2013-05-16 19:26:19 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/ImageIO.h
|
2013-05-14 19:40:21 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/InputConfig.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/InputManager.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/Log.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/MathExp.h
|
2013-08-14 12:16:49 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/MetaData.h
|
2013-05-14 19:40:21 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/platform.h
|
2013-09-28 16:10:06 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/PlatformId.h
|
2013-05-14 19:40:21 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/Renderer.h
|
2013-09-29 02:54:15 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/ScraperCmdLine.h
|
2013-06-17 19:01:03 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/Settings.h
|
2013-05-14 19:40:21 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/Sound.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/SystemData.h
|
2013-11-12 23:28:15 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/ThemeData.h
|
2013-05-22 17:11:10 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/VolumeControl.h
|
2013-05-14 19:40:21 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/Window.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/XMLReader.h
|
2013-11-12 23:28:15 +00:00
|
|
|
|
2013-09-15 19:11:39 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/AsyncReqComponent.h
|
2013-08-22 20:29:50 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ButtonComponent.h
|
2014-03-01 00:52:32 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ComponentGrid.h
|
2014-03-01 21:02:44 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ComponentList.h
|
2013-09-28 22:35:38 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/DateTimeComponent.h
|
2014-01-25 23:34:29 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/HelpComponent.h
|
2014-02-08 02:15:48 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/IList.h
|
2013-06-02 15:08:32 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ImageComponent.h
|
2013-12-01 01:04:46 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ImageGridComponent.h
|
2014-03-01 00:52:32 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/MenuComponent.h
|
2013-08-23 02:41:40 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/NinePatchComponent.h
|
2013-10-01 21:52:30 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/OptionListComponent.h
|
2013-09-23 19:58:28 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/RatingComponent.h
|
2014-03-12 03:00:08 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ScraperSearchComponent.h
|
2013-07-03 01:01:58 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ScrollableContainer.h
|
2013-06-19 01:12:30 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/SliderComponent.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/SwitchComponent.h
|
2013-06-14 15:48:13 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/TextComponent.h
|
2013-08-18 14:16:11 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/TextEditComponent.h
|
2013-06-02 15:08:32 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/TextListComponent.h
|
2014-03-01 00:52:32 +00:00
|
|
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiDetectDevice.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiFastSelect.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiMetaDataEd.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiMsgBoxOk.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiMsgBoxYesNo.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiGameScraper.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiInputConfig.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiMenu.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiSettingsMenu.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiScraperStart.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiScraperLog.h
|
2013-11-12 23:28:15 +00:00
|
|
|
|
2013-09-19 23:41:14 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/scrapers/Scraper.h
|
2013-09-16 19:53:24 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/scrapers/GamesDBScraper.h
|
2013-09-24 07:26:33 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/scrapers/TheArchiveScraper.h
|
2013-11-12 23:28:15 +00:00
|
|
|
|
2013-05-14 19:40:21 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/pugiXML/pugiconfig.hpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/pugiXML/pugixml.hpp
|
2013-11-12 23:28:15 +00:00
|
|
|
|
2013-12-22 22:16:01 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/views/gamelist/BasicGameListView.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/views/gamelist/DetailedGameListView.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/views/gamelist/IGameListView.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/views/gamelist/ISimpleGameListView.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/views/gamelist/GridGameListView.h
|
2013-12-11 03:23:47 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/views/SystemView.h
|
2013-11-12 23:28:15 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/views/ViewController.h
|
|
|
|
|
2013-12-08 17:35:43 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/animations/Animation.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/animations/AnimationController.h
|
2013-12-13 03:17:59 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/animations/LambdaAnimation.h
|
2013-12-08 17:35:43 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/animations/LaunchAnimation.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/animations/MoveCameraAnimation.h
|
|
|
|
|
2013-10-04 23:24:41 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/resources/Font.h
|
2013-06-21 16:49:29 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/resources/ResourceManager.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/resources/TextureResource.h
|
2013-05-16 19:26:19 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/Resources.h
|
2013-05-14 19:40:21 +00:00
|
|
|
)
|
|
|
|
set(ES_SOURCES
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/AudioManager.cpp
|
2013-11-06 01:41:49 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/FileData.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/FileSorts.cpp
|
2013-06-02 15:08:32 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/GuiComponent.cpp
|
2013-09-15 17:56:47 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/HttpReq.cpp
|
2013-05-16 19:26:19 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/ImageIO.cpp
|
2013-05-14 19:40:21 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/InputConfig.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/InputManager.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/Log.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/main.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/MathExp.cpp
|
2013-08-14 12:16:49 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/MetaData.cpp
|
2013-05-14 19:40:21 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/platform.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/Renderer_draw_gl.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/Renderer_init.cpp
|
2013-09-29 02:54:15 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/ScraperCmdLine.cpp
|
2013-06-17 19:01:03 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/Settings.cpp
|
2013-05-14 19:40:21 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/Sound.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/SystemData.cpp
|
2013-11-12 23:28:15 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/ThemeData.cpp
|
2013-05-22 17:11:10 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/VolumeControl.cpp
|
2013-05-14 19:40:21 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/Window.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/XMLReader.cpp
|
2013-11-12 23:28:15 +00:00
|
|
|
|
2013-09-15 19:11:39 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/AsyncReqComponent.cpp
|
2013-08-22 20:29:50 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ButtonComponent.cpp
|
2014-03-01 00:52:32 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ComponentGrid.cpp
|
2014-03-01 21:02:44 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ComponentList.cpp
|
2013-09-28 22:35:38 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/DateTimeComponent.cpp
|
2014-01-25 23:34:29 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/HelpComponent.cpp
|
2013-06-02 15:08:32 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ImageComponent.cpp
|
2014-03-01 00:52:32 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/MenuComponent.cpp
|
2013-08-23 02:41:40 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/NinePatchComponent.cpp
|
2013-09-23 19:58:28 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/RatingComponent.cpp
|
2014-03-12 03:00:08 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ScraperSearchComponent.cpp
|
2013-07-03 01:01:58 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ScrollableContainer.cpp
|
2013-06-19 01:12:30 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/SliderComponent.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/SwitchComponent.cpp
|
2013-06-14 15:48:13 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/TextComponent.cpp
|
2013-08-18 14:16:11 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/TextEditComponent.cpp
|
2014-03-01 00:52:32 +00:00
|
|
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiDetectDevice.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiFastSelect.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiMetaDataEd.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiMsgBoxOk.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiMsgBoxYesNo.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiGameScraper.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiInputConfig.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiMenu.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiSettingsMenu.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiScraperStart.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/guis/GuiScraperLog.cpp
|
2013-11-12 23:28:15 +00:00
|
|
|
|
2013-09-24 18:06:13 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/scrapers/Scraper.cpp
|
2013-09-16 19:53:24 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/scrapers/GamesDBScraper.cpp
|
2013-09-24 07:26:33 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/scrapers/TheArchiveScraper.cpp
|
2013-11-12 23:28:15 +00:00
|
|
|
|
2013-05-14 19:40:21 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/pugiXML/pugixml.cpp
|
2013-11-12 23:28:15 +00:00
|
|
|
|
2013-10-04 23:24:41 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/resources/Font.cpp
|
2013-06-21 16:49:29 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/resources/ResourceManager.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/resources/TextureResource.cpp
|
2013-08-07 22:40:27 +00:00
|
|
|
|
2013-12-22 22:16:01 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/views/gamelist/BasicGameListView.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/views/gamelist/DetailedGameListView.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/views/gamelist/IGameListView.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/views/gamelist/ISimpleGameListView.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/views/gamelist/GridGameListView.cpp
|
2013-12-11 03:23:47 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/views/SystemView.cpp
|
2013-11-12 23:28:15 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/views/ViewController.cpp
|
|
|
|
|
2013-12-08 17:35:43 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/animations/AnimationController.cpp
|
|
|
|
|
2013-08-07 22:40:27 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/ResourceUtil.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/ES_logo_16_png.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/ES_logo_32_png.cpp
|
2013-08-23 02:41:40 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/button_png.cpp
|
2014-03-08 17:48:47 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/button_filled_png.cpp
|
2013-08-23 02:41:40 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/frame_png.cpp
|
2013-09-14 15:58:34 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/textbox_png.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/textbox_glow_png.cpp
|
2014-02-13 23:10:28 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/scroll_gradient_png.cpp
|
2013-09-24 02:02:41 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/star_filled_png.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/star_unfilled_png.cpp
|
2014-01-25 23:34:29 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_a_png.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_b_png.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_menu_png.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_png.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_up_down_png.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_left_right_png.cpp
|
2014-02-16 18:27:58 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/opensans_hebrew_condensed_regular_ttf.cpp
|
2014-03-04 22:48:33 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/sq_bracket_png.cpp
|
2014-03-06 19:45:03 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/arrow_png.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/checkbox_checked_png.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/checkbox_unchecked_png.cpp
|
2014-03-08 00:16:08 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/slider_knob_png.cpp
|
2013-05-14 19:40:21 +00:00
|
|
|
)
|
|
|
|
|
2013-08-07 22:40:27 +00:00
|
|
|
SOURCE_GROUP(resources FILES ResourceUtil.cpp)
|
|
|
|
|
2013-05-14 19:40:21 +00:00
|
|
|
#add open gl specific sources
|
2013-09-28 01:17:41 +00:00
|
|
|
#if(${GLSystem} MATCHES "Desktop OpenGL")
|
2013-05-14 19:40:21 +00:00
|
|
|
LIST(APPEND ES_SOURCES
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/Renderer_init_sdlgl.cpp
|
|
|
|
)
|
2013-09-28 01:17:41 +00:00
|
|
|
#else()
|
|
|
|
# LIST(APPEND ES_SOURCES
|
|
|
|
# ${CMAKE_CURRENT_SOURCE_DIR}/src/Renderer_init_rpi.cpp
|
|
|
|
# )
|
|
|
|
#endif()
|
2013-05-14 19:40:21 +00:00
|
|
|
|
2013-05-16 19:26:19 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
#define OS specific sources and headers
|
|
|
|
if(MSVC)
|
|
|
|
LIST(APPEND ES_SOURCES
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/EmulationStation.rc
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2013-05-14 19:40:21 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
#define libraries and directories
|
2013-05-16 10:04:02 +00:00
|
|
|
if(DEFINED BCMHOST)
|
|
|
|
link_directories(
|
|
|
|
${Boost_LIBRARY_DIRS}
|
|
|
|
"/opt/vc/lib"
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
link_directories(
|
|
|
|
${Boost_LIBRARY_DIRS}
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2013-05-14 19:40:21 +00:00
|
|
|
set(ES_LIBRARIES
|
2013-05-16 10:04:02 +00:00
|
|
|
${Boost_LIBRARIES}
|
|
|
|
${FREETYPE_LIBRARIES}
|
|
|
|
${FreeImage_LIBRARIES}
|
2013-08-18 17:17:24 +00:00
|
|
|
${SDL2_LIBRARY}
|
|
|
|
${SDL2MAIN_LIBRARY}
|
2013-10-10 18:11:01 +00:00
|
|
|
${CURL_LIBRARIES}
|
2013-05-14 19:40:21 +00:00
|
|
|
)
|
|
|
|
|
2013-05-22 17:11:10 +00:00
|
|
|
#add ALSA for Linux
|
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
|
|
|
LIST(APPEND ES_LIBRARIES
|
|
|
|
${ALSA_LIBRARY}
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2013-05-14 19:40:21 +00:00
|
|
|
if(DEFINED BCMHOST)
|
|
|
|
LIST(APPEND ES_LIBRARIES
|
|
|
|
bcm_host
|
2013-05-15 07:50:59 +00:00
|
|
|
EGL
|
2013-05-24 09:36:29 +00:00
|
|
|
${OPENGLES_LIBRARIES}
|
2013-05-14 19:40:21 +00:00
|
|
|
)
|
2013-05-15 07:50:59 +00:00
|
|
|
else()
|
2013-05-22 17:11:10 +00:00
|
|
|
if(MSVC)
|
|
|
|
LIST(APPEND ES_LIBRARIES
|
|
|
|
winmm
|
|
|
|
)
|
|
|
|
endif()
|
2013-05-15 07:50:59 +00:00
|
|
|
if(${GLSystem} MATCHES "Desktop OpenGL")
|
|
|
|
LIST(APPEND ES_LIBRARIES
|
|
|
|
${OPENGL_LIBRARIES}
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
LIST(APPEND ES_LIBRARIES
|
|
|
|
${OPENGLES_LIBRARIES}
|
|
|
|
)
|
|
|
|
endif()
|
2013-05-14 19:40:21 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
#set up build directories
|
|
|
|
set(dir ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
set(EXECUTABLE_OUTPUT_PATH ${dir} CACHE PATH "Build directory" FORCE)
|
|
|
|
set(LIBRARY_OUTPUT_PATH ${dir} CACHE PATH "Build directory" FORCE)
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
#define target
|
|
|
|
include_directories(${ES_INCLUDE_DIRS})
|
|
|
|
add_executable(emulationstation ${ES_SOURCES} ${ES_HEADERS})
|
|
|
|
target_link_libraries(emulationstation ${ES_LIBRARIES})
|
2013-05-17 09:58:43 +00:00
|
|
|
|
|
|
|
#special properties for windows builds
|
|
|
|
if(MSVC)
|
|
|
|
#show console in debug builds, but not in proper release builds
|
|
|
|
#Note that up to CMake 2.8.10 this feature is broken: http://public.kitware.com/Bug/view.php?id=12566
|
|
|
|
set_target_properties(emulationstation PROPERTIES LINK_FLAGS_DEBUG "/SUBSYSTEM:CONSOLE")
|
|
|
|
set_target_properties(emulationstation PROPERTIES COMPILE_DEFINITIONS_DEBUG "_CONSOLE")
|
|
|
|
set_target_properties(emulationstation PROPERTIES LINK_FLAGS_RELWITHDEBINFO "/SUBSYSTEM:CONSOLE")
|
|
|
|
set_target_properties(emulationstation PROPERTIES COMPILE_DEFINITIONS_RELWITHDEBINFO "_CONSOLE")
|
|
|
|
set_target_properties(emulationstation PROPERTIES LINK_FLAGS_RELEASE "/SUBSYSTEM:WINDOWS")
|
|
|
|
set_target_properties(emulationstation PROPERTIES LINK_FLAGS_MINSIZEREL "/SUBSYSTEM:WINDOWS")
|
2013-05-24 09:36:29 +00:00
|
|
|
endif()
|