2014-08-23 21:22:05 -04:00
|
|
|
# Enable modules to include each other's files
|
|
|
|
include_directories(.)
|
|
|
|
|
2019-03-16 01:45:08 -04:00
|
|
|
# CMake seems to only define _DEBUG on Windows
|
|
|
|
set_property(DIRECTORY APPEND PROPERTY
|
|
|
|
COMPILE_DEFINITIONS $<$<CONFIG:Debug>:_DEBUG> $<$<NOT:$<CONFIG:Debug>>:NDEBUG>)
|
|
|
|
|
|
|
|
# Set compilation flags
|
|
|
|
if (MSVC)
|
2019-03-16 02:12:13 -04:00
|
|
|
set(CMAKE_CONFIGURATION_TYPES Debug Release CACHE STRING "" FORCE)
|
|
|
|
|
2019-03-16 01:45:08 -04:00
|
|
|
# Silence "deprecation" warnings
|
2019-03-16 02:12:13 -04:00
|
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_DEPRECATE -D_SCL_SECURE_NO_WARNINGS)
|
2019-03-16 01:45:08 -04:00
|
|
|
|
2019-03-16 02:12:13 -04:00
|
|
|
# Avoid windows.h junk
|
|
|
|
add_definitions(-DNOMINMAX)
|
2019-03-16 01:45:08 -04:00
|
|
|
|
2019-03-16 02:12:13 -04:00
|
|
|
# Avoid windows.h from including some usually unused libs like winsocks.h, since this might cause some redefinition errors.
|
|
|
|
add_definitions(-DWIN32_LEAN_AND_MEAN)
|
2019-03-16 01:45:08 -04:00
|
|
|
|
2019-04-15 17:32:47 -04:00
|
|
|
# Ensure that projects build with Unicode support.
|
|
|
|
add_definitions(-DUNICODE -D_UNICODE)
|
|
|
|
|
2019-05-07 14:06:20 -04:00
|
|
|
# /W3 - Level 3 warnings
|
|
|
|
# /MP - Multi-threaded compilation
|
|
|
|
# /Zi - Output debugging information
|
|
|
|
# /Zo - Enhanced debug info for optimized builds
|
|
|
|
# /permissive- - Enables stricter C++ standards conformance checks
|
|
|
|
# /EHsc - C++-only exception handling semantics
|
2019-05-09 15:49:27 -04:00
|
|
|
# /volatile:iso - Use strict standards-compliant volatile semantics.
|
2019-05-07 14:06:20 -04:00
|
|
|
# /Zc:externConstexpr - Allow extern constexpr variables to have external linkage, like the standard mandates
|
|
|
|
# /Zc:inline - Let codegen omit inline functions in object files
|
|
|
|
# /Zc:throwingNew - Let codegen assume `operator new` (without std::nothrow) will never return null
|
2019-05-07 14:02:29 -04:00
|
|
|
add_compile_options(
|
|
|
|
/W3
|
|
|
|
/MP
|
|
|
|
/Zi
|
|
|
|
/Zo
|
|
|
|
/permissive-
|
|
|
|
/EHsc
|
|
|
|
/std:c++latest
|
2019-05-09 15:49:27 -04:00
|
|
|
/volatile:iso
|
2019-05-07 14:06:20 -04:00
|
|
|
/Zc:externConstexpr
|
2019-05-07 14:02:29 -04:00
|
|
|
/Zc:inline
|
|
|
|
/Zc:throwingNew
|
|
|
|
)
|
2019-03-16 01:45:08 -04:00
|
|
|
|
|
|
|
# /GS- - No stack buffer overflow checks
|
2019-03-16 02:12:13 -04:00
|
|
|
add_compile_options("$<$<CONFIG:Release>:/GS->")
|
2019-03-16 01:45:08 -04:00
|
|
|
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS_DEBUG "/DEBUG /MANIFEST:NO" CACHE STRING "" FORCE)
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS_RELEASE "/DEBUG /MANIFEST:NO /INCREMENTAL:NO /OPT:REF,ICF" CACHE STRING "" FORCE)
|
|
|
|
else()
|
2019-05-04 02:06:55 -04:00
|
|
|
add_compile_options(
|
|
|
|
-Wall
|
2020-04-15 15:59:23 -04:00
|
|
|
-Werror=implicit-fallthrough
|
2020-04-15 13:28:28 -04:00
|
|
|
-Werror=reorder
|
2020-04-15 15:59:23 -04:00
|
|
|
-Wextra
|
2019-05-04 02:06:55 -04:00
|
|
|
-Wno-attributes
|
2020-04-15 15:59:23 -04:00
|
|
|
-Wno-unused-parameter
|
2019-05-04 02:06:55 -04:00
|
|
|
)
|
2019-03-16 01:45:08 -04:00
|
|
|
|
|
|
|
if (APPLE AND CMAKE_CXX_COMPILER_ID STREQUAL Clang)
|
2019-03-16 02:12:13 -04:00
|
|
|
add_compile_options("-stdlib=libc++")
|
2019-03-16 01:45:08 -04:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Set file offset size to 64 bits.
|
|
|
|
#
|
|
|
|
# On modern Unixes, this is typically already the case. The lone exception is
|
|
|
|
# glibc, which may default to 32 bits. glibc allows this to be configured
|
|
|
|
# by setting _FILE_OFFSET_BITS.
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Linux" OR MINGW)
|
|
|
|
add_definitions(-D_FILE_OFFSET_BITS=64)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (MINGW)
|
|
|
|
add_definitions(-DMINGW_HAS_SECURE_API)
|
|
|
|
|
|
|
|
if (MINGW_STATIC_BUILD)
|
|
|
|
add_definitions(-DQT_STATICPLUGIN)
|
2019-03-16 02:12:13 -04:00
|
|
|
add_compile_options("-static")
|
2019-03-16 01:45:08 -04:00
|
|
|
endif()
|
|
|
|
endif()
|
2019-06-30 07:29:52 -04:00
|
|
|
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Linux" OR MINGW)
|
|
|
|
# GNU ar: Create thin archive files.
|
|
|
|
# Requires binutils-2.19 or later.
|
|
|
|
set(CMAKE_C_ARCHIVE_CREATE "<CMAKE_AR> qcTP <TARGET> <LINK_FLAGS> <OBJECTS>")
|
|
|
|
set(CMAKE_C_ARCHIVE_APPEND "<CMAKE_AR> qTP <TARGET> <LINK_FLAGS> <OBJECTS>")
|
|
|
|
set(CMAKE_CXX_ARCHIVE_CREATE "<CMAKE_AR> qcTP <TARGET> <LINK_FLAGS> <OBJECTS>")
|
|
|
|
set(CMAKE_CXX_ARCHIVE_APPEND "<CMAKE_AR> qTP <TARGET> <LINK_FLAGS> <OBJECTS>")
|
|
|
|
endif()
|
2019-03-16 01:45:08 -04:00
|
|
|
endif()
|
|
|
|
|
2013-08-29 23:35:09 -04:00
|
|
|
add_subdirectory(common)
|
|
|
|
add_subdirectory(core)
|
2018-07-26 20:01:37 -04:00
|
|
|
add_subdirectory(audio_core)
|
2014-04-09 23:09:05 -04:00
|
|
|
add_subdirectory(video_core)
|
2017-01-21 04:53:03 -05:00
|
|
|
add_subdirectory(input_common)
|
2016-03-20 10:58:24 -04:00
|
|
|
add_subdirectory(tests)
|
2019-03-16 01:45:08 -04:00
|
|
|
|
2016-03-01 12:24:18 -05:00
|
|
|
if (ENABLE_SDL2)
|
2018-01-11 21:21:20 -05:00
|
|
|
add_subdirectory(yuzu_cmd)
|
2019-03-25 20:29:31 -04:00
|
|
|
add_subdirectory(yuzu_tester)
|
2014-08-23 21:22:05 -04:00
|
|
|
endif()
|
2019-03-16 01:45:08 -04:00
|
|
|
|
2014-08-23 21:22:05 -04:00
|
|
|
if (ENABLE_QT)
|
2018-01-11 21:21:20 -05:00
|
|
|
add_subdirectory(yuzu)
|
2017-07-09 17:52:18 -04:00
|
|
|
endif()
|
2019-03-16 01:45:08 -04:00
|
|
|
|
2018-09-16 14:05:51 -04:00
|
|
|
if (ENABLE_WEB_SERVICE)
|
|
|
|
add_subdirectory(web_service)
|
|
|
|
endif()
|