-
Notifications
You must be signed in to change notification settings - Fork 247
/
CMakeLists.txt
508 lines (442 loc) · 14 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
cmake_minimum_required(VERSION 3.10)
option(GLES "Set to ON if targeting Embedded OpenGL" ${GLES})
option(GLES2 "Set to ON if targeting OpenGL ES 2.0" ${GLES2})
option(GL "Set to ON if targeting Desktop OpenGL" ${GL})
option(RPI "Set to ON to enable the Raspberry PI video player (omxplayer)" ${RPI})
option(CEC "CEC" ON)
option(BCM "BCM host" OFF)
option(BATOCERA "Set to ON to enable BATOCERA specific code" OFF)
option(RETROBAT "Set to ON to enable RETROBAT specific code" OFF)
option(ENABLE_FILEMANAGER "Set to ON to enable f1 shortcut for filesystem" OFF)
option(DISABLE_KODI "Set to ON to disable kodi in menu" OFF)
option(ENABLE_PULSE "Set to ON to enable pulse audio (versus alsa)" OFF)
option(ENABLE_TTS "Set to ON to enable text to speech" OFF)
option(USE_SYSTEM_PUGIXML "Set to ON to use system-wide pugixml library" OFF)
# Win32 default platform & directory detection
if(WIN32)
if (NOT CMAKE_GENERATOR_PLATFORM)
set(CMAKE_GENERATOR_PLATFORM Win32)
endif()
MESSAGE("-- Destination platform : " ${CMAKE_GENERATOR_PLATFORM})
if(NOT VLC_VERSION)
set(VLC_VERSION 1.0.0)
endif()
if (IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../batocera-emulationstation-win32-dependencies)
set(CUSTOM_LIBDIR ${CMAKE_CURRENT_SOURCE_DIR}/../batocera-emulationstation-win32-dependencies)
elseif (IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/win32-libs)
set(CUSTOM_LIBDIR ${CMAKE_CURRENT_SOURCE_DIR}/win32-libs)
else ()
MESSAGE("-- Downloading Windows libraries...")
include(FetchContent)
FetchContent_Declare(win32libs
GIT_REPOSITORY "https://github.com/batocera-linux/batocera-emulationstation-win32-dependencies.git"
GIT_TAG "origin/master"
SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/win32-libs"
)
FetchContent_MakeAvailable(win32libs)
set(CUSTOM_LIBDIR ${CMAKE_CURRENT_SOURCE_DIR}/win32-libs)
endif()
if(CUSTOM_LIBDIR)
MESSAGE("-- Default libraries path set to : " ${CUSTOM_LIBDIR} )
endif()
endif()
project(emulationstation-all)
# Win32 custom directories assignation
if(WIN32 AND CUSTOM_LIBDIR)
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
set(CUSTOM_PLATFORM "x64")
else()
set(CUSTOM_PLATFORM "x86")
endif()
set(
CMAKE_PREFIX_PATH
${CUSTOM_LIBDIR}/rapidjson
${CUSTOM_LIBDIR}/freetype
${CUSTOM_LIBDIR}/freetype/${CUSTOM_PLATFORM}
${CUSTOM_LIBDIR}/freeimage
${CUSTOM_LIBDIR}/freeimage/${CUSTOM_PLATFORM}
${CUSTOM_LIBDIR}/SDL2_mixer
${CUSTOM_LIBDIR}/SDL2_mixer/${CUSTOM_PLATFORM}
${CUSTOM_LIBDIR}/SDL2
${CUSTOM_LIBDIR}/SDL2/${CUSTOM_PLATFORM}
${CUSTOM_LIBDIR}/libvlc
${CUSTOM_LIBDIR}/libvlc/${CUSTOM_PLATFORM}
${CUSTOM_LIBDIR}/curl/${CUSTOM_PLATFORM}
)
endif()
#-------------------------------------------------------------------------------
#add local find scripts to CMAKE path
LIST(APPEND CMAKE_MODULE_PATH
${CMAKE_CURRENT_SOURCE_DIR}/CMake/Utils
${CMAKE_CURRENT_SOURCE_DIR}/CMake/Packages
)
if(BATOCERA)
MESSAGE("Batocera build")
add_definitions(-DBATOCERA)
endif()
if(RETROBAT)
MESSAGE("Retrobat build")
add_definitions(-DRETROBAT)
endif()
# disable kodi menu
if(DISABLE_KODI)
MESSAGE("Kodi disabled")
else()
add_definitions(-D_ENABLE_KODI_)
endif()
# batocera / file manager f1 button
# disable file manager
if(ENABLE_FILEMANAGER)
MESSAGE("file manager enabled")
add_definitions(-D_ENABLE_FILEMANAGER_)
endif()
if(BCM)
set(BCMHOST found)
endif()
#-------------------------------------------------------------------------------
#set up OpenGL system variable
if(GLES)
set(GLSystem "Embedded OpenGL" CACHE STRING "The OpenGL system to be used")
elseif(GLES2)
set(GLSystem "OpenGL ES 2.0" CACHE STRING "The OpenGL system to be used")
elseif(GL)
set(GLSystem "Desktop OpenGL" CACHE STRING "The OpenGL system to be used")
#-------------------------------------------------------------------------------
#check if we're running on Raspberry Pi
elseif(EXISTS "${CMAKE_FIND_ROOT_PATH}/opt/vc/include/bcm_host.h")
MESSAGE("bcm_host.h found")
set(BCMHOST found)
set(GLSystem "Embedded OpenGL" CACHE STRING "The OpenGL system to be used")
#-------------------------------------------------------------------------------
#check if we're running on OSMC Vero4K
elseif(EXISTS "${CMAKE_FIND_ROOT_PATH}/opt/vero3/lib/libMali.so")
MESSAGE("libMali.so found")
set(VERO4K found)
set(GLSystem "Embedded OpenGL" CACHE STRING "The OpenGL system to be used")
#-------------------------------------------------------------------------------
#check if we're running on olinuxino / odroid / etc
elseif(EXISTS "${CMAKE_FIND_ROOT_PATH}/usr/lib/libMali.so" OR
EXISTS "${CMAKE_FIND_ROOT_PATH}/usr/lib/libmali.so" OR # batocera
EXISTS "${CMAKE_FIND_ROOT_PATH}/usr/lib/arm-linux-gnueabihf/libMali.so" OR
EXISTS "${CMAKE_FIND_ROOT_PATH}/usr/lib/aarch64-linux-gnu/libMali.so" OR
EXISTS "${CMAKE_FIND_ROOT_PATH}/usr/lib/arm-linux-gnueabihf/mali-egl/libmali.so" OR
EXISTS "${CMAKE_FIND_ROOT_PATH}/usr/lib/arm-linux-gnueabihf/libmali.so")
MESSAGE("libMali.so found")
set(GLSystem "Embedded OpenGL" CACHE STRING "The OpenGL system to be used")
else()
set(GLSystem "Desktop OpenGL" CACHE STRING "The OpenGL system to be used")
endif(GLES)
set_property(CACHE GLSystem PROPERTY STRINGS "Desktop OpenGL" "Embedded OpenGL")
#finding necessary packages
#-------------------------------------------------------------------------------
if(${GLSystem} MATCHES "Desktop OpenGL")
find_package(OpenGL REQUIRED)
elseif(${GLSystem} MATCHES "OpenGL ES 2.0")
find_package(OpenGLES2 REQUIRED)
else()
find_package(OpenGLES REQUIRED)
endif()
find_package(Freetype REQUIRED)
find_package(FreeImage REQUIRED)
# batocera / background musics
find_package(SDL2MIXER REQUIRED)
# batocera / customisations
find_package(SDL2 REQUIRED)
find_package(CURL REQUIRED)
find_package(VLC REQUIRED)
find_package(RapidJSON REQUIRED)
if(NOT WIN32)
if(ENABLE_PULSE)
MESSAGE("pulse audio enabled")
find_package(PulseAudio REQUIRED)
add_definitions(-D_ENABLE_PULSE_)
else()
MESSAGE("pulse audio disabled")
endif()
find_package(udev)
if(UDEV_FOUND)
MESSAGE("udev found. guns enabled")
add_definitions(-DHAVE_UDEV)
else()
MESSAGE("udev not found. guns will be disabled")
endif()
if(ENABLE_TTS)
MESSAGE("tts enabled")
find_library(LIBESPEAK_LIBRARIES NAMES espeak REQUIRED)
if("${LIBESPEAK_LIBRARIES}" STREQUAL "LIBESPEAK_LIBRARIES-NOTFOUND")
MESSAGE(FATAL_ERROR "espeak not found")
endif()
add_definitions(-D_ENABLE_TTS_)
else()
MESSAGE("tts disabled")
endif()
if(CEC)
MESSAGE("CEC enabled")
find_package(libCEC)
else()
MESSAGE("CEC disabled")
endif()
endif()
#add ALSA for Linux
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
find_package(ALSA REQUIRED)
endif()
#-------------------------------------------------------------------------------
#set up compiler flags and excutable names
if(DEFINED BCMHOST OR RPI)
add_definitions(-D_RPI_)
endif()
if(DEFINED VERO4K)
add_definitions(-D_VERO4K_)
endif()
if(CEC)
if(DEFINED libCEC_FOUND)
add_definitions(-DHAVE_LIBCEC)
endif()
endif()
if(DEFINED SCREENSCRAPER_SOFTNAME)
add_definitions(-DSCREENSCRAPER_SOFTNAME="${SCREENSCRAPER_SOFTNAME}")
endif()
if(DEFINED SCREENSCRAPER_DEV_LOGIN)
add_definitions(-DSCREENSCRAPER_DEV_LOGIN="${SCREENSCRAPER_DEV_LOGIN}")
endif()
if(DEFINED GAMESDB_APIKEY)
add_definitions(-DGAMESDB_APIKEY="${GAMESDB_APIKEY}")
endif()
if(DEFINED CHEEVOS_DEV_LOGIN)
add_definitions(-DCHEEVOS_DEV_LOGIN="${CHEEVOS_DEV_LOGIN}")
endif()
if(DEFINED HFS_DEV_LOGIN)
add_definitions(-DHFS_DEV_LOGIN="${HFS_DEV_LOGIN}")
endif()
#-------------------------------------------------------------------------------
if(MSVC)
set(CMAKE_DEBUG_POSTFIX "d")
add_definitions(-D_CRT_SECURE_NO_DEPRECATE)
add_definitions(-D_CRT_NONSTDC_NO_DEPRECATE)
add_definitions(-DNOMINMAX)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP") #multi-processor compilation
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /MP") #multi-processor compilation
endif()
if(CMAKE_COMPILER_IS_GNUCXX)
#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!")
endif()
#set up compiler flags for GCC
if (CMAKE_BUILD_TYPE MATCHES Debug)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14 -Wno-attributes -O0") #support C++14 for std::, optimize
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -O0")
else()
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14 -Wno-attributes -O3") #support C++14 for std::, optimize
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -O3") #-s = strip binary
endif()
endif()
if(${GLSystem} MATCHES "Desktop OpenGL")
add_definitions(-DUSE_OPENGL_21)
elseif(${GLSystem} MATCHES "OpenGL ES 2.0")
add_definitions(-DUSE_OPENGLES_20)
else()
add_definitions(-DUSE_OPENGLES_10)
endif()
#-------------------------------------------------------------------------------
#add include directories
set(COMMON_INCLUDE_DIRS
${FREETYPE_INCLUDE_DIRS}
${FreeImage_INCLUDE_DIRS}
# batocera / background musics
${SDLMIXER_INCLUDE_DIR}
# batocera / customisations
${SDL2_INCLUDE_DIR}
${CURL_INCLUDE_DIR}
${VLC_INCLUDE_DIR}
${RAPIDJSON_INCLUDE_DIRS}
${CMAKE_CURRENT_SOURCE_DIR}/external
${CMAKE_CURRENT_SOURCE_DIR}/es-core/src
)
if(ENABLE_PULSE)
LIST(APPEND COMMON_INCLUDE_DIRS
${PULSEAUDIO_INCLUDE_DIR}
)
endif()
if(USE_SYSTEM_PUGIXML)
MESSAGE("Use system pugixml")
find_package(pugixml REQUIRED)
endif()
#add libCEC_INCLUDE_DIR
if(CEC)
if(DEFINED libCEC_FOUND)
LIST(APPEND COMMON_INCLUDE_DIRS
${libCEC_INCLUDE_DIR}
)
endif()
endif()
#add ALSA for Linux
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
LIST(APPEND COMMON_INCLUDE_DIRS
${ALSA_INCLUDE_DIRS}
)
endif()
if(DEFINED BCMHOST)
LIST(APPEND COMMON_INCLUDE_DIRS
"${CMAKE_FIND_ROOT_PATH}/opt/vc/include"
"${CMAKE_FIND_ROOT_PATH}/opt/vc/include/interface/vcos"
"${CMAKE_FIND_ROOT_PATH}/opt/vc/include/interface/vmcs_host/linux"
"${CMAKE_FIND_ROOT_PATH}/opt/vc/include/interface/vcos/pthreads"
)
#add include directory for Vero4K
elseif(DEFINED VERO4K)
LIST(APPEND COMMON_INCLUDE_DIRS
"${CMAKE_FIND_ROOT_PATH}/opt/vero3/include"
)
else()
if(${GLSystem} MATCHES "Desktop OpenGL")
LIST(APPEND COMMON_INCLUDE_DIRS
${OPENGL_INCLUDE_DIR}
)
elseif(${GLSystem} MATCHES "OpenGL ES 2.0")
LIST(APPEND COMMON_INCLUDE_DIRS
${OPENGLES2_INCLUDE_DIR}
)
else()
LIST(APPEND COMMON_INCLUDE_DIRS
${OPENGLES_INCLUDE_DIR}
)
endif()
endif()
#-------------------------------------------------------------------------------
#define libraries and directories
if(DEFINED BCMHOST)
link_directories(
# batocera / customisations
"${CMAKE_FIND_ROOT_PATH}/opt/vc/lib"
)
elseif(DEFINED VERO4K)
link_directories(
"${CMAKE_FIND_ROOT_PATH}/opt/vero3/lib"
)
endif()
set(COMMON_LIBRARIES
${FREETYPE_LIBRARIES}
${FreeImage_LIBRARIES}
${SDL2_LIBRARY}
# batocera / background musics
${SDLMIXER_LIBRARY}
# batocera / customisations
${CURL_LIBRARIES}
${VLC_LIBRARIES}
pugixml
nanosvg
id3v2
libcheevos
)
if(UDEV_FOUND)
LIST(APPEND COMMON_LIBRARIES
${UDEV_LIBRARY}
)
endif()
if(ENABLE_PULSE)
LIST(APPEND COMMON_LIBRARIES
${PULSEAUDIO_LIBRARY}
)
endif()
if(ENABLE_TTS)
LIST(APPEND COMMON_LIBRARIES
${LIBESPEAK_LIBRARIES}
)
endif()
#add libCEC_LIBRARIES
if(CEC)
if(DEFINED libCEC_FOUND)
if(DEFINED BCMHOST)
LIST(APPEND COMMON_LIBRARIES
vchiq_arm
vchostif
)
endif()
LIST(APPEND COMMON_LIBRARIES
dl
${libCEC_LIBRARIES}
)
endif()
endif()
#add ALSA for Linux
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
LIST(APPEND COMMON_LIBRARIES
${ALSA_LIBRARY}
)
endif()
if(DEFINED BCMHOST)
LIST(APPEND COMMON_LIBRARIES
bcm_host
brcmEGL
)
if(GLES)
LIST(APPEND COMMON_LIBRARIES ${OPENGLES_LIBRARIES})
else()
LIST(APPEND COMMON_LIBRARIES ${OPENGLES2_LIBRARIES})
endif()
elseif(DEFINED VERO4K)
LIST(APPEND COMMON_LIBRARIES
EGL
${OPENGLES_LIBRARIES}
)
else()
if(MSVC)
LIST(APPEND COMMON_LIBRARIES
winmm
)
endif()
if(${GLSystem} MATCHES "Desktop OpenGL")
LIST(APPEND COMMON_LIBRARIES
${OPENGL_LIBRARIES}
)
elseif(${GLSystem} MATCHES "OpenGL ES 2.0")
LIST(APPEND COMMON_LIBRARIES
EGL
${OPENGLES2_LIBRARIES}
)
else()
LIST(APPEND COMMON_LIBRARIES
EGL
${OPENGLES_LIBRARIES}
)
endif()
endif()
if(NOT WIN32)
# batocera / i18n
# i18n
find_program (MSGFMT_EXECUTABLE msgfmt)
find_program (MSGMERGE_EXECUTABLE msgmerge)
find_program (XGETTEXT_EXECUTABLE xgettext)
find_package(Intl)
if(MSGFMT_EXECUTABLE AND MSGMERGE_EXECUTABLE AND XGETTEXT_EXECUTABLE AND Intl_FOUND)
message (STATUS "Native language support enabled.")
add_definitions(-DHAVE_INTL)
else()
message (STATUS "Native language support disabled.")
endif()
endif()
find_program (PYTHON3_EXECUTABLE python3)
if(PYTHON3_EXECUTABLE)
add_custom_target (checkgamesdb ALL COMMENT "Checking guns and wheels games db.")
add_custom_command (TARGET checkgamesdb COMMAND "${PYTHON3_EXECUTABLE}" "resources/checkWheelGunGamesResources.py")
endif()
#-------------------------------------------------------------------------------
# set up build directories
if(WIN32)
set(dir ${CMAKE_CURRENT_SOURCE_DIR}/bin/${CMAKE_GENERATOR_PLATFORM})
else()
set(dir ${CMAKE_CURRENT_SOURCE_DIR})
endif()
set(EXECUTABLE_OUTPUT_PATH ${dir} CACHE PATH "Build directory" FORCE)
set(LIBRARY_OUTPUT_PATH ${dir} CACHE PATH "Build directory" FORCE)
#-------------------------------------------------------------------------------
# add each component
add_subdirectory("external")
add_subdirectory("es-core")
add_subdirectory("es-app")
if(MSGFMT_EXECUTABLE AND MSGMERGE_EXECUTABLE AND XGETTEXT_EXECUTABLE AND Intl_FOUND)
add_subdirectory (locale)
endif()