2014-08-24 01:22:05 +00:00
# Enable modules to include each other's files
include_directories ( . )
2019-03-16 05:45:08 +00:00
# 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 )
2019-03-16 06:12:13 +00:00
set ( CMAKE_CONFIGURATION_TYPES Debug Release CACHE STRING "" FORCE )
2019-03-16 05:45:08 +00:00
# Silence "deprecation" warnings
2019-03-16 06:12:13 +00:00
add_definitions ( -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_DEPRECATE -D_SCL_SECURE_NO_WARNINGS )
2019-03-16 05:45:08 +00:00
2019-03-16 06:12:13 +00:00
# Avoid windows.h junk
add_definitions ( -DNOMINMAX )
2019-03-16 05:45:08 +00:00
2019-03-16 06:12:13 +00: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 05:45:08 +00:00
2019-04-15 21:32:47 +00:00
# Ensure that projects build with Unicode support.
add_definitions ( -DUNICODE -D_UNICODE )
2019-05-07 18:06:20 +00:00
# /W3 - Level 3 warnings
# /MP - Multi-threaded compilation
# /Zi - Output debugging information
2021-12-07 00:14:29 +00:00
# /Zm - Specifies the precompiled header memory allocation limit
2019-05-07 18:06:20 +00:00
# /Zo - Enhanced debug info for optimized builds
# /permissive- - Enables stricter C++ standards conformance checks
# /EHsc - C++-only exception handling semantics
2021-03-05 06:46:56 +00:00
# /utf-8 - Set source and execution character sets to UTF-8
2019-05-09 19:49:27 +00:00
# /volatile:iso - Use strict standards-compliant volatile semantics.
2019-05-07 18:06:20 +00: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
2021-10-29 00:43:46 +00:00
# /GT - Supports fiber safety for data allocated using static thread-local storage
2019-05-07 18:02:29 +00:00
add_compile_options (
/ M P
2021-12-07 00:14:29 +00:00
/ Z m 2 0 0
2019-05-07 18:02:29 +00:00
/ Z o
/ p e r m i s s i v e -
/ E H s c
/ s t d : c + + l a t e s t
2021-03-05 06:46:56 +00:00
/ u t f - 8
2019-05-09 19:49:27 +00:00
/ v o l a t i l e : i s o
2019-05-07 18:06:20 +00:00
/ Z c : e x t e r n C o n s t e x p r
2019-05-07 18:02:29 +00:00
/ Z c : i n l i n e
/ Z c : t h r o w i n g N e w
2021-09-13 20:30:30 +00:00
/ G T
2020-10-30 03:30:42 +00:00
2021-06-28 18:23:41 +00:00
# External headers diagnostics
/ e x p e r i m e n t a l : e x t e r n a l # Enables the external headers options. This option isn't required in Visual Studio 2019 version 16.10 and later
/ 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
2020-10-30 03:30:42 +00:00
# Warnings
/ W 3
2021-06-28 07:55:21 +00:00
/ w e 4 0 1 8 # 'expression': signed/unsigned mismatch
/ w e 4 0 6 2 # Enumerator 'identifier' in a switch of enum 'enumeration' is not handled
2021-01-10 06:16:25 +00:00
/ w e 4 1 0 1 # 'identifier': unreferenced local variable
2021-07-03 09:51:31 +00:00
/ w e 4 1 8 9 # 'identifier': local variable is initialized but not referenced
2021-01-09 03:21:53 +00:00
/ w e 4 2 6 5 # 'class': class has virtual functions, but destructor is not virtual
2021-06-28 07:55:21 +00:00
/ w e 4 2 6 7 # 'var': conversion from 'size_t' to 'type', possible loss of data
/ w e 4 3 0 5 # 'context': truncation from 'type1' to 'type2'
/ w e 4 3 8 8 # 'expression': signed/unsigned mismatch
/ w e 4 3 8 9 # 'operator': signed/unsigned mismatch
2022-05-27 00:08:21 +00:00
/ 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
2022-04-08 03:00:04 +00:00
/ w e 4 5 0 5 # 'function': unreferenced local function has been removed
2021-06-28 07:55:21 +00:00
/ w e 4 5 4 7 # 'operator': operator before comma has no effect; expected operator with side-effect
2020-10-30 03:36:44 +00:00
/ 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
2021-05-17 07:46:40 +00:00
/ w e 4 7 1 5 # 'function': not all control paths return a value
2020-10-30 03:30:42 +00:00
/ w e 4 8 3 4 # Discarding return value of function with 'nodiscard' attribute
2021-01-09 03:21:53 +00:00
/ w e 5 0 3 8 # data member 'member1' will be initialized after data member 'member2'
2022-04-08 03:00:04 +00:00
/ w e 5 2 4 5 # 'function': unreferenced function with internal linkage has been removed
2019-05-07 18:02:29 +00:00
)
2019-03-16 05:45:08 +00:00
2021-12-24 01:23:02 +00:00
if ( USE_CCACHE )
# when caching, we need to use /Z7 to downgrade debug info to use an older but more cachable format
add_compile_options ( /Z7 )
else ( )
add_compile_options ( /Zi )
endif ( )
2021-09-13 20:30:30 +00:00
if ( ARCHITECTURE_x86_64 )
add_compile_options ( /QIntel-jcc-erratum )
endif ( )
2019-03-16 05:45:08 +00:00
# /GS- - No stack buffer overflow checks
2019-03-16 06:12:13 +00:00
add_compile_options ( "$<$<CONFIG:Release>:/GS->" )
2019-03-16 05:45:08 +00: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 06:06:55 +00:00
add_compile_options (
- W a l l
2021-01-24 20:31:29 +00:00
- W e r r o r = a r r a y - b o u n d s
2020-04-15 19:59:23 +00:00
- 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
2020-04-17 03:23:57 +00:00
- 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
2021-01-24 20:31:29 +00:00
- W e r r o r = m i s s i n g - f i e l d - i n i t i a l i z e r s
2020-04-15 17:28:28 +00:00
- W e r r o r = r e o r d e r
2022-05-27 00:08:21 +00:00
- W e r r o r = s h a d o w
2021-07-06 16:48:49 +00:00
- W e r r o r = s i g n - c o m p a r e
2021-01-13 06:52:30 +00:00
- W e r r o r = s w i t c h
2020-12-30 05:58:58 +00:00
- W e r r o r = u n i n i t i a l i z e d
2021-01-15 06:09:30 +00:00
- W e r r o r = u n u s e d - f u n c t i o n
2020-10-30 03:30:42 +00:00
- W e r r o r = u n u s e d - r e s u l t
2021-01-13 06:52:30 +00:00
- W e r r o r = u n u s e d - v a r i a b l e
2020-04-15 19:59:23 +00:00
- W e x t r a
2020-04-17 02:06:58 +00:00
- W m i s s i n g - d e c l a r a t i o n s
2019-05-04 06:06:55 +00:00
- W n o - a t t r i b u t e s
2020-11-23 22:24:37 +00:00
- W n o - i n v a l i d - o f f s e t o f
2020-04-15 19:59:23 +00:00
- W n o - u n u s e d - p a r a m e t e r
2019-05-04 06:06:55 +00:00
)
2019-03-16 05:45:08 +00:00
2020-06-27 14:52:23 +00:00
if ( ARCHITECTURE_x86_64 )
add_compile_options ( "-mcx16" )
endif ( )
2019-03-16 05:45:08 +00:00
if ( APPLE AND CMAKE_CXX_COMPILER_ID STREQUAL Clang )
2019-03-16 06:12:13 +00:00
add_compile_options ( "-stdlib=libc++" )
2019-03-16 05:45:08 +00: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 06:12:13 +00:00
add_compile_options ( "-static" )
2019-03-16 05:45:08 +00:00
endif ( )
endif ( )
2019-06-30 11:29:52 +00: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 05:45:08 +00:00
endif ( )
2013-08-30 03:35:09 +00:00
add_subdirectory ( common )
add_subdirectory ( core )
2018-07-27 00:01:37 +00:00
add_subdirectory ( audio_core )
2014-04-10 03:09:05 +00:00
add_subdirectory ( video_core )
2022-07-06 00:20:39 +00:00
add_subdirectory ( network )
2017-01-21 09:53:03 +00:00
add_subdirectory ( input_common )
2021-01-09 06:30:07 +00:00
add_subdirectory ( shader_recompiler )
2022-01-11 23:36:20 +00:00
if ( YUZU_TESTS )
add_subdirectory ( tests )
endif ( )
2019-03-16 05:45:08 +00:00
2016-03-01 17:24:18 +00:00
if ( ENABLE_SDL2 )
2018-01-12 02:21:20 +00:00
add_subdirectory ( yuzu_cmd )
2014-08-24 01:22:05 +00:00
endif ( )
2019-03-16 05:45:08 +00:00
2014-08-24 01:22:05 +00:00
if ( ENABLE_QT )
2018-01-12 02:21:20 +00:00
add_subdirectory ( yuzu )
2017-07-09 21:52:18 +00:00
endif ( )
2019-03-16 05:45:08 +00:00
2018-09-16 18:05:51 +00:00
if ( ENABLE_WEB_SERVICE )
add_subdirectory ( web_service )
endif ( )