2022-11-05 08:58:44 -04:00
# SPDX-FileCopyrightText: 2018 yuzu Emulator Project
# SPDX-License-Identifier: GPL-2.0-or-later
# Enable modules to include each other's files
include_directories ( . )
# CMake seems to only define _DEBUG on Windows
set_property ( DIRECTORY APPEND PROPERTY
C O M P I L E _ D E F I N I T I O N S $ < $ < C O N F I G : D e b u g > : _ D E B U G > $ < $ < N O T : $ < C O N F I G : D e b u g > > : N D E B U G > )
# Set compilation flags
if ( MSVC )
set ( CMAKE_CONFIGURATION_TYPES Debug Release CACHE STRING "" FORCE )
# Silence "deprecation" warnings
add_definitions ( -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_DEPRECATE -D_SCL_SECURE_NO_WARNINGS )
# Avoid windows.h junk
add_definitions ( -DNOMINMAX )
# 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 )
# Ensure that projects build with Unicode support.
add_definitions ( -DUNICODE -D_UNICODE )
# /W3 - Level 3 warnings
# /MP - Multi-threaded compilation
# /Zi - Output debugging information
# /Zm - Specifies the precompiled header memory allocation limit
# /Zo - Enhanced debug info for optimized builds
# /permissive- - Enables stricter C++ standards conformance checks
# /EHsc - C++-only exception handling semantics
# /utf-8 - Set source and execution character sets to UTF-8
# /volatile:iso - Use strict standards-compliant volatile semantics.
# /Zc:externConstexpr - Allow extern constexpr variables to have external linkage, like the standard mandates
# /Zc:inline - Let codegen omit inline functions in object files
2023-07-21 20:54:19 -04:00
# /Zc:preprocessor - Enable standards-conforming preprocessor
2022-11-05 08:58:44 -04:00
# /Zc:throwingNew - Let codegen assume `operator new` (without std::nothrow) will never return null
# /GT - Supports fiber safety for data allocated using static thread-local storage
add_compile_options (
/ M P
/ Z m 2 0 0
/ Z o
/ p e r m i s s i v e -
/ E H s c
2023-06-07 16:07:00 -04:00
/ s t d : c + + 2 0
2022-11-05 08:58:44 -04:00
/ u t f - 8
/ v o l a t i l e : i s o
/ Z c : e x t e r n C o n s t e x p r
/ Z c : i n l i n e
2023-07-21 20:54:19 -04:00
/ Z c : p r e p r o c e s s o r
2022-11-05 08:58:44 -04:00
/ Z c : t h r o w i n g N e w
/ G T
2023-06-07 16:07:00 -04:00
# Modules
/ e x p e r i m e n t a l : m o d u l e - # Disable module support explicitly due to conflicts with precompiled headers
2022-11-05 08:58:44 -04:00
# External headers diagnostics
/ e x t e r n a l : a n g l e b r a c k e t s # Treats all headers included by #include <header>, where the header file is enclosed in angle brackets (< >), as external headers
/ e x t e r n a l : W 0 # Sets the default warning level to 0 for external headers, effectively turning off warnings for external headers
# Warnings
/ W 3
/ W X
/ w e 4 0 6 2 # Enumerator 'identifier' in a switch of enum 'enumeration' is not handled
/ w e 4 1 8 9 # 'identifier': local variable is initialized but not referenced
/ w e 4 2 6 5 # 'class': class has virtual functions, but destructor is not virtual
/ w e 4 3 8 8 # 'expression': signed/unsigned mismatch
/ w e 4 3 8 9 # 'operator': signed/unsigned mismatch
/ w e 4 4 5 6 # Declaration of 'identifier' hides previous local declaration
/ w e 4 4 5 7 # Declaration of 'identifier' hides function parameter
/ w e 4 4 5 8 # Declaration of 'identifier' hides class member
/ w e 4 4 5 9 # Declaration of 'identifier' hides global declaration
/ w e 4 5 0 5 # 'function': unreferenced local function has been removed
/ w e 4 5 4 7 # 'operator': operator before comma has no effect; expected operator with side-effect
/ w e 4 5 4 9 # 'operator1': operator before comma has no effect; did you intend 'operator2'?
/ w e 4 5 5 5 # Expression has no effect; expected expression with side-effect
/ w e 4 8 2 6 # Conversion from 'type1' to 'type2' is sign-extended. This may cause unexpected runtime behavior.
/ w e 5 0 3 8 # data member 'member1' will be initialized after data member 'member2'
/ w e 5 2 3 3 # explicit lambda capture 'identifier' is not used
/ w e 5 2 4 5 # 'function': unreferenced function with internal linkage has been removed
/ w d 4 1 0 0 # 'identifier': unreferenced formal parameter
/ w d 4 3 2 4 # 'struct_name': structure was padded due to __declspec(align())
)
2022-11-30 00:29:32 -05:00
if ( USE_CCACHE OR YUZU_USE_PRECOMPILED_HEADERS )
2023-03-12 23:44:48 -04:00
# when caching, we need to use /Z7 to downgrade debug info to use an older but more cacheable format
2022-11-30 00:29:32 -05:00
# Precompiled headers are deleted if not using /Z7. See https://github.com/nanoant/CMakePCHCompiler/issues/21
2022-11-05 08:58:44 -04:00
add_compile_options ( /Z7 )
else ( )
add_compile_options ( /Zi )
endif ( )
if ( ARCHITECTURE_x86_64 )
add_compile_options ( /QIntel-jcc-erratum )
endif ( )
# /GS- - No stack buffer overflow checks
add_compile_options ( "$<$<CONFIG:Release>:/GS->" )
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 ( )
add_compile_options (
- W e r r o r = a l l
- W e r r o r = e x t r a
- W e r r o r = m i s s i n g - d e c l a r a t i o n s
- W e r r o r = s h a d o w
- W e r r o r = u n u s e d
- W n o - a t t r i b u t e s
- W n o - i n v a l i d - o f f s e t o f
- W n o - u n u s e d - p a r a m e t e r
$ < $ < C X X _ C O M P I L E R _ I D : C l a n g > : - W n o - b r a c e d - s c a l a r - i n i t >
$ < $ < C X X _ C O M P I L E R _ I D : C l a n g > : - W n o - u n u s e d - p r i v a t e - f i e l d >
2023-05-02 19:52:43 -04:00
$ < $ < C X X _ C O M P I L E R _ I D : C l a n g > : - W e r r o r = s h a d o w - u n c a p t u r e d - l o c a l >
$ < $ < C X X _ C O M P I L E R _ I D : C l a n g > : - W e r r o r = i m p l i c i t - f a l l t h r o u g h >
$ < $ < C X X _ C O M P I L E R _ I D : C l a n g > : - W e r r o r = t y p e - l i m i t s >
2022-11-22 15:10:41 -05:00
$ < $ < C X X _ C O M P I L E R _ I D : A p p l e C l a n g > : - W n o - b r a c e d - s c a l a r - i n i t >
$ < $ < C X X _ C O M P I L E R _ I D : A p p l e C l a n g > : - W n o - u n u s e d - p r i v a t e - f i e l d >
2022-11-05 08:58:44 -04:00
)
if ( ARCHITECTURE_x86_64 )
add_compile_options ( "-mcx16" )
add_compile_options ( "-fwrapv" )
endif ( )
if ( APPLE AND CMAKE_CXX_COMPILER_ID STREQUAL Clang )
add_compile_options ( "-stdlib=libc++" )
endif ( )
2023-04-06 20:00:48 -04:00
# GCC bugs
2023-08-17 12:04:29 -04:00
if ( CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL "11" AND CMAKE_CXX_COMPILER_ID STREQUAL "GNU" )
2023-04-06 20:00:48 -04:00
# These diagnostics would be great if they worked, but are just completely broken
# and produce bogus errors on external libraries like fmt.
add_compile_options (
- W n o - a r r a y - b o u n d s
- W n o - s t r i n g o p - o v e r r e a d
- W n o - s t r i n g o p - o v e r f l o w
)
endif ( )
2022-11-05 08:58:44 -04:00
# 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 )
add_compile_options ( "-static" )
endif ( )
endif ( )
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 ( )
endif ( )
add_subdirectory ( common )
add_subdirectory ( core )
add_subdirectory ( audio_core )
add_subdirectory ( video_core )
add_subdirectory ( network )
add_subdirectory ( input_common )
add_subdirectory ( shader_recompiler )
2022-12-29 22:25:00 -05:00
if ( YUZU_ROOM )
add_subdirectory ( dedicated_room )
endif ( )
2022-11-05 08:58:44 -04:00
if ( YUZU_TESTS )
add_subdirectory ( tests )
endif ( )
if ( ENABLE_SDL2 )
add_subdirectory ( yuzu_cmd )
endif ( )
if ( ENABLE_QT )
add_subdirectory ( yuzu )
endif ( )
if ( ENABLE_WEB_SERVICE )
add_subdirectory ( web_service )
endif ( )
2023-05-31 16:58:29 -04:00
if ( ANDROID )
add_subdirectory ( android/app/src/main/jni )
target_include_directories ( yuzu-android PRIVATE android/app/src/main )
endif ( )