chore: make yuzu REUSE compliant
[REUSE] is a specification that aims at making file copyright
information consistent, so that it can be both human and machine
readable. It basically requires that all files have a header containing
copyright and licensing information. When this isn't possible, like
when dealing with binary assets, generated files or embedded third-party
dependencies, it is permitted to insert copyright information in the
`.reuse/dep5` file.
Oh, and it also requires that all the licenses used in the project are
present in the `LICENSES` folder, that's why the diff is so huge.
This can be done automatically with `reuse download --all`.
The `reuse` tool also contains a handy subcommand that analyzes the
project and tells whether or not the project is (still) compliant,
`reuse lint`.
Following REUSE has a few advantages over the current approach:
- Copyright information is easy to access for users / downstream
- Files like `dist/license.md` do not need to exist anymore, as
`.reuse/dep5` is used instead
- `reuse lint` makes it easy to ensure that copyright information of
files like binary assets / images is always accurate and up to date
To add copyright information of files that didn't have it I looked up
who committed what and when, for each file. As yuzu contributors do not
have to sign a CLA or similar I couldn't assume that copyright ownership
was of the "yuzu Emulator Project", so I used the name and/or email of
the commit author instead.
[REUSE]: https://reuse.software
Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254
2022-05-14 20:06:02 -04:00
|
|
|
# SPDX-FileCopyrightText: 2018 yuzu Emulator Project
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
2020-08-23 20:28:15 -04:00
|
|
|
add_subdirectory(host_shaders)
|
|
|
|
|
2021-08-03 23:43:11 -04:00
|
|
|
if(LIBVA_FOUND)
|
2022-01-30 04:31:13 -05:00
|
|
|
set_source_files_properties(host1x/codecs/codec.cpp
|
2021-08-03 23:43:11 -04:00
|
|
|
PROPERTIES COMPILE_DEFINITIONS LIBVA_FOUND=1)
|
2021-12-03 00:35:30 -05:00
|
|
|
list(APPEND FFmpeg_LIBRARIES ${LIBVA_LIBRARIES})
|
2021-08-03 23:43:11 -04:00
|
|
|
endif()
|
|
|
|
|
2018-01-17 19:37:34 -05:00
|
|
|
add_library(video_core STATIC
|
2020-12-30 16:37:31 -05:00
|
|
|
buffer_cache/buffer_base.h
|
2022-11-19 18:09:56 -05:00
|
|
|
buffer_cache/buffer_cache_base.h
|
2021-01-16 18:48:58 -05:00
|
|
|
buffer_cache/buffer_cache.cpp
|
2019-07-19 10:50:40 -04:00
|
|
|
buffer_cache/buffer_cache.h
|
2022-11-19 18:09:56 -05:00
|
|
|
buffer_cache/memory_tracker_base.h
|
|
|
|
buffer_cache/word_manager.h
|
2022-11-19 21:07:14 -05:00
|
|
|
cache_types.h
|
2020-10-26 23:07:36 -04:00
|
|
|
cdma_pusher.cpp
|
|
|
|
cdma_pusher.h
|
2020-06-26 18:22:29 -04:00
|
|
|
compatible_formats.cpp
|
|
|
|
compatible_formats.h
|
2021-11-05 10:52:31 -04:00
|
|
|
control/channel_state.cpp
|
|
|
|
control/channel_state.h
|
|
|
|
control/channel_state_cache.cpp
|
|
|
|
control/channel_state_cache.h
|
|
|
|
control/scheduler.cpp
|
|
|
|
control/scheduler.h
|
2020-12-30 00:06:22 -05:00
|
|
|
delayed_destruction_ring.h
|
2020-02-20 23:56:00 -05:00
|
|
|
dirty_flags.cpp
|
2019-12-26 20:14:10 -05:00
|
|
|
dirty_flags.h
|
2018-11-23 23:20:56 -05:00
|
|
|
dma_pusher.cpp
|
|
|
|
dma_pusher.h
|
2022-11-05 17:26:38 -04:00
|
|
|
engines/sw_blitter/blitter.cpp
|
|
|
|
engines/sw_blitter/blitter.h
|
|
|
|
engines/sw_blitter/converter.cpp
|
|
|
|
engines/sw_blitter/converter.h
|
2019-05-31 16:33:21 -04:00
|
|
|
engines/const_buffer_info.h
|
2022-12-06 00:45:26 -05:00
|
|
|
engines/draw_manager.cpp
|
|
|
|
engines/draw_manager.h
|
2020-04-28 13:53:47 -04:00
|
|
|
engines/engine_interface.h
|
2019-04-22 18:50:56 -04:00
|
|
|
engines/engine_upload.cpp
|
|
|
|
engines/engine_upload.h
|
2018-02-11 21:34:20 -05:00
|
|
|
engines/fermi_2d.cpp
|
|
|
|
engines/fermi_2d.h
|
2019-01-22 18:49:31 -05:00
|
|
|
engines/kepler_compute.cpp
|
|
|
|
engines/kepler_compute.h
|
2018-09-08 16:58:20 -04:00
|
|
|
engines/kepler_memory.cpp
|
|
|
|
engines/kepler_memory.h
|
2018-02-11 21:34:20 -05:00
|
|
|
engines/maxwell_3d.cpp
|
|
|
|
engines/maxwell_3d.h
|
2018-06-10 18:02:33 -04:00
|
|
|
engines/maxwell_dma.cpp
|
|
|
|
engines/maxwell_dma.h
|
2021-11-05 10:52:31 -04:00
|
|
|
engines/puller.cpp
|
|
|
|
engines/puller.h
|
2020-12-12 01:26:14 -05:00
|
|
|
framebuffer_config.h
|
2023-01-01 13:22:46 -05:00
|
|
|
fsr.cpp
|
|
|
|
fsr.h
|
2022-01-30 04:31:13 -05:00
|
|
|
host1x/codecs/codec.cpp
|
|
|
|
host1x/codecs/codec.h
|
|
|
|
host1x/codecs/h264.cpp
|
|
|
|
host1x/codecs/h264.h
|
|
|
|
host1x/codecs/vp8.cpp
|
|
|
|
host1x/codecs/vp8.h
|
|
|
|
host1x/codecs/vp9.cpp
|
|
|
|
host1x/codecs/vp9.h
|
|
|
|
host1x/codecs/vp9_types.h
|
|
|
|
host1x/control.cpp
|
|
|
|
host1x/control.h
|
2022-01-30 16:26:01 -05:00
|
|
|
host1x/host1x.cpp
|
|
|
|
host1x/host1x.h
|
2022-01-30 04:31:13 -05:00
|
|
|
host1x/nvdec.cpp
|
|
|
|
host1x/nvdec.h
|
|
|
|
host1x/nvdec_common.h
|
|
|
|
host1x/sync_manager.cpp
|
|
|
|
host1x/sync_manager.h
|
|
|
|
host1x/syncpoint_manager.cpp
|
|
|
|
host1x/syncpoint_manager.h
|
|
|
|
host1x/vic.cpp
|
|
|
|
host1x/vic.h
|
2020-05-29 00:53:27 -04:00
|
|
|
macro/macro.cpp
|
|
|
|
macro/macro.h
|
2020-06-04 11:42:19 -04:00
|
|
|
macro/macro_hle.cpp
|
|
|
|
macro/macro_hle.h
|
2020-05-29 00:53:27 -04:00
|
|
|
macro/macro_interpreter.cpp
|
|
|
|
macro/macro_interpreter.h
|
2020-02-17 19:19:26 -05:00
|
|
|
fence_manager.h
|
2018-03-18 16:15:05 -04:00
|
|
|
gpu.cpp
|
2018-02-11 23:44:12 -05:00
|
|
|
gpu.h
|
2019-01-23 22:17:55 -05:00
|
|
|
gpu_thread.cpp
|
|
|
|
gpu_thread.h
|
2023-01-04 22:05:20 -05:00
|
|
|
invalidation_accumulator.h
|
2018-02-11 23:44:12 -05:00
|
|
|
memory_manager.cpp
|
|
|
|
memory_manager.h
|
2022-11-22 18:38:23 -05:00
|
|
|
precompiled_headers.h
|
2022-10-16 11:49:32 -04:00
|
|
|
pte_kind.h
|
2020-02-11 14:02:41 -05:00
|
|
|
query_cache.h
|
2019-10-27 02:40:08 -04:00
|
|
|
rasterizer_accelerated.cpp
|
|
|
|
rasterizer_accelerated.h
|
2018-03-19 23:00:59 -04:00
|
|
|
rasterizer_interface.h
|
2018-01-17 19:37:34 -05:00
|
|
|
renderer_base.cpp
|
|
|
|
renderer_base.h
|
2022-11-27 20:37:37 -05:00
|
|
|
renderer_null/null_rasterizer.cpp
|
|
|
|
renderer_null/null_rasterizer.h
|
|
|
|
renderer_null/renderer_null.cpp
|
|
|
|
renderer_null/renderer_null.h
|
2023-01-04 23:28:48 -05:00
|
|
|
renderer_opengl/blit_image.cpp
|
|
|
|
renderer_opengl/blit_image.h
|
2022-11-19 18:09:56 -05:00
|
|
|
renderer_opengl/gl_buffer_cache_base.cpp
|
2018-08-28 18:27:03 -04:00
|
|
|
renderer_opengl/gl_buffer_cache.cpp
|
2018-09-06 14:49:49 -04:00
|
|
|
renderer_opengl/gl_buffer_cache.h
|
2021-05-25 17:58:28 -04:00
|
|
|
renderer_opengl/gl_compute_pipeline.cpp
|
|
|
|
renderer_opengl/gl_compute_pipeline.h
|
2019-04-10 14:56:12 -04:00
|
|
|
renderer_opengl/gl_device.cpp
|
|
|
|
renderer_opengl/gl_device.h
|
2020-02-17 19:19:26 -05:00
|
|
|
renderer_opengl/gl_fence_manager.cpp
|
|
|
|
renderer_opengl/gl_fence_manager.h
|
2023-01-01 13:22:46 -05:00
|
|
|
renderer_opengl/gl_fsr.cpp
|
|
|
|
renderer_opengl/gl_fsr.h
|
2021-05-25 17:58:28 -04:00
|
|
|
renderer_opengl/gl_graphics_pipeline.cpp
|
|
|
|
renderer_opengl/gl_graphics_pipeline.h
|
2018-03-19 23:00:59 -04:00
|
|
|
renderer_opengl/gl_rasterizer.cpp
|
|
|
|
renderer_opengl/gl_rasterizer.h
|
2018-11-06 04:40:49 -05:00
|
|
|
renderer_opengl/gl_resource_manager.cpp
|
2018-01-17 19:37:34 -05:00
|
|
|
renderer_opengl/gl_resource_manager.h
|
2018-08-23 17:30:27 -04:00
|
|
|
renderer_opengl/gl_shader_cache.cpp
|
|
|
|
renderer_opengl/gl_shader_cache.h
|
2018-04-07 05:12:38 -04:00
|
|
|
renderer_opengl/gl_shader_manager.cpp
|
|
|
|
renderer_opengl/gl_shader_manager.h
|
2021-06-14 21:06:29 -04:00
|
|
|
renderer_opengl/gl_shader_context.h
|
2018-01-17 19:37:34 -05:00
|
|
|
renderer_opengl/gl_shader_util.cpp
|
|
|
|
renderer_opengl/gl_shader_util.h
|
2019-12-25 15:02:17 -05:00
|
|
|
renderer_opengl/gl_state_tracker.cpp
|
|
|
|
renderer_opengl/gl_state_tracker.h
|
2018-03-19 17:10:59 -04:00
|
|
|
renderer_opengl/gl_stream_buffer.cpp
|
|
|
|
renderer_opengl/gl_stream_buffer.h
|
2019-04-11 16:14:55 -04:00
|
|
|
renderer_opengl/gl_texture_cache.cpp
|
|
|
|
renderer_opengl/gl_texture_cache.h
|
2021-08-05 16:46:24 -04:00
|
|
|
renderer_opengl/gl_texture_cache_base.cpp
|
2019-07-27 18:40:10 -04:00
|
|
|
renderer_opengl/gl_query_cache.cpp
|
|
|
|
renderer_opengl/gl_query_cache.h
|
2018-03-24 21:09:30 -04:00
|
|
|
renderer_opengl/maxwell_to_gl.h
|
2018-01-17 19:37:34 -05:00
|
|
|
renderer_opengl/renderer_opengl.cpp
|
|
|
|
renderer_opengl/renderer_opengl.h
|
2020-12-30 00:25:23 -05:00
|
|
|
renderer_opengl/util_shaders.cpp
|
|
|
|
renderer_opengl/util_shaders.h
|
|
|
|
renderer_vulkan/blit_image.cpp
|
|
|
|
renderer_vulkan/blit_image.h
|
2020-12-24 18:22:07 -05:00
|
|
|
renderer_vulkan/fixed_pipeline_state.cpp
|
|
|
|
renderer_vulkan/fixed_pipeline_state.h
|
|
|
|
renderer_vulkan/maxwell_to_vk.cpp
|
|
|
|
renderer_vulkan/maxwell_to_vk.h
|
2021-03-19 18:28:31 -04:00
|
|
|
renderer_vulkan/pipeline_helper.h
|
2021-07-27 18:15:32 -04:00
|
|
|
renderer_vulkan/pipeline_statistics.cpp
|
|
|
|
renderer_vulkan/pipeline_statistics.h
|
2020-12-24 18:22:07 -05:00
|
|
|
renderer_vulkan/renderer_vulkan.h
|
|
|
|
renderer_vulkan/renderer_vulkan.cpp
|
|
|
|
renderer_vulkan/vk_blit_screen.cpp
|
|
|
|
renderer_vulkan/vk_blit_screen.h
|
2022-11-19 18:09:56 -05:00
|
|
|
renderer_vulkan/vk_buffer_cache_base.cpp
|
2020-12-24 18:22:07 -05:00
|
|
|
renderer_vulkan/vk_buffer_cache.cpp
|
|
|
|
renderer_vulkan/vk_buffer_cache.h
|
|
|
|
renderer_vulkan/vk_command_pool.cpp
|
|
|
|
renderer_vulkan/vk_command_pool.h
|
|
|
|
renderer_vulkan/vk_compute_pass.cpp
|
|
|
|
renderer_vulkan/vk_compute_pass.h
|
|
|
|
renderer_vulkan/vk_compute_pipeline.cpp
|
|
|
|
renderer_vulkan/vk_compute_pipeline.h
|
|
|
|
renderer_vulkan/vk_descriptor_pool.cpp
|
|
|
|
renderer_vulkan/vk_descriptor_pool.h
|
|
|
|
renderer_vulkan/vk_fence_manager.cpp
|
|
|
|
renderer_vulkan/vk_fence_manager.h
|
2021-10-16 21:33:58 -04:00
|
|
|
renderer_vulkan/vk_fsr.cpp
|
|
|
|
renderer_vulkan/vk_fsr.h
|
2021-03-19 18:28:31 -04:00
|
|
|
renderer_vulkan/vk_graphics_pipeline.cpp
|
|
|
|
renderer_vulkan/vk_graphics_pipeline.h
|
2020-12-24 18:22:07 -05:00
|
|
|
renderer_vulkan/vk_master_semaphore.cpp
|
|
|
|
renderer_vulkan/vk_master_semaphore.h
|
|
|
|
renderer_vulkan/vk_pipeline_cache.cpp
|
|
|
|
renderer_vulkan/vk_pipeline_cache.h
|
2023-03-19 11:23:24 -04:00
|
|
|
renderer_vulkan/vk_present_manager.cpp
|
|
|
|
renderer_vulkan/vk_present_manager.h
|
2020-12-24 18:22:07 -05:00
|
|
|
renderer_vulkan/vk_query_cache.cpp
|
|
|
|
renderer_vulkan/vk_query_cache.h
|
|
|
|
renderer_vulkan/vk_rasterizer.cpp
|
|
|
|
renderer_vulkan/vk_rasterizer.h
|
2021-03-19 18:28:31 -04:00
|
|
|
renderer_vulkan/vk_render_pass_cache.cpp
|
|
|
|
renderer_vulkan/vk_render_pass_cache.h
|
2020-12-24 18:22:07 -05:00
|
|
|
renderer_vulkan/vk_resource_pool.cpp
|
|
|
|
renderer_vulkan/vk_resource_pool.h
|
|
|
|
renderer_vulkan/vk_scheduler.cpp
|
|
|
|
renderer_vulkan/vk_scheduler.h
|
|
|
|
renderer_vulkan/vk_shader_util.cpp
|
|
|
|
renderer_vulkan/vk_shader_util.h
|
2022-12-08 16:52:29 -05:00
|
|
|
renderer_vulkan/vk_smaa.cpp
|
|
|
|
renderer_vulkan/vk_smaa.h
|
2020-12-24 18:22:07 -05:00
|
|
|
renderer_vulkan/vk_staging_buffer_pool.cpp
|
|
|
|
renderer_vulkan/vk_staging_buffer_pool.h
|
|
|
|
renderer_vulkan/vk_state_tracker.cpp
|
|
|
|
renderer_vulkan/vk_state_tracker.h
|
|
|
|
renderer_vulkan/vk_swapchain.cpp
|
|
|
|
renderer_vulkan/vk_swapchain.h
|
|
|
|
renderer_vulkan/vk_texture_cache.cpp
|
|
|
|
renderer_vulkan/vk_texture_cache.h
|
2021-08-05 16:46:24 -04:00
|
|
|
renderer_vulkan/vk_texture_cache_base.cpp
|
2022-12-19 19:29:58 -05:00
|
|
|
renderer_vulkan/vk_turbo_mode.cpp
|
|
|
|
renderer_vulkan/vk_turbo_mode.h
|
2020-12-24 18:22:07 -05:00
|
|
|
renderer_vulkan/vk_update_descriptor.cpp
|
|
|
|
renderer_vulkan/vk_update_descriptor.h
|
2021-04-26 02:53:26 -04:00
|
|
|
shader_cache.cpp
|
2020-05-22 19:53:27 -04:00
|
|
|
shader_cache.h
|
2021-04-26 02:53:26 -04:00
|
|
|
shader_environment.cpp
|
|
|
|
shader_environment.h
|
2020-07-09 23:36:38 -04:00
|
|
|
shader_notify.cpp
|
|
|
|
shader_notify.h
|
2022-12-08 16:52:29 -05:00
|
|
|
smaa_area_tex.h
|
|
|
|
smaa_search_tex.h
|
2018-10-28 21:14:25 -04:00
|
|
|
surface.cpp
|
|
|
|
surface.h
|
2020-12-30 00:25:23 -05:00
|
|
|
texture_cache/accelerated_swizzle.cpp
|
|
|
|
texture_cache/accelerated_swizzle.h
|
|
|
|
texture_cache/decode_bc4.cpp
|
|
|
|
texture_cache/decode_bc4.h
|
|
|
|
texture_cache/descriptor_table.h
|
|
|
|
texture_cache/formatter.cpp
|
|
|
|
texture_cache/formatter.h
|
2019-11-09 01:26:30 -05:00
|
|
|
texture_cache/format_lookup_table.cpp
|
|
|
|
texture_cache/format_lookup_table.h
|
2020-12-30 00:25:23 -05:00
|
|
|
texture_cache/image_base.cpp
|
|
|
|
texture_cache/image_base.h
|
|
|
|
texture_cache/image_info.cpp
|
|
|
|
texture_cache/image_info.h
|
|
|
|
texture_cache/image_view_base.cpp
|
|
|
|
texture_cache/image_view_base.h
|
|
|
|
texture_cache/image_view_info.cpp
|
|
|
|
texture_cache/image_view_info.h
|
|
|
|
texture_cache/render_targets.h
|
|
|
|
texture_cache/samples_helper.h
|
|
|
|
texture_cache/slot_vector.h
|
2021-12-17 10:45:06 -05:00
|
|
|
texture_cache/texture_cache.cpp
|
2019-04-24 15:35:54 -04:00
|
|
|
texture_cache/texture_cache.h
|
2021-08-05 16:46:24 -04:00
|
|
|
texture_cache/texture_cache_base.h
|
2020-12-30 00:25:23 -05:00
|
|
|
texture_cache/types.h
|
|
|
|
texture_cache/util.cpp
|
|
|
|
texture_cache/util.h
|
2018-06-17 23:50:44 -04:00
|
|
|
textures/astc.h
|
2021-06-13 15:15:08 -04:00
|
|
|
textures/astc.cpp
|
2023-05-20 17:15:36 -04:00
|
|
|
textures/bcn.cpp
|
|
|
|
textures/bcn.h
|
2018-03-19 19:00:29 -04:00
|
|
|
textures/decoders.cpp
|
|
|
|
textures/decoders.h
|
2020-04-07 19:38:14 -04:00
|
|
|
textures/texture.cpp
|
2018-03-19 19:00:29 -04:00
|
|
|
textures/texture.h
|
2023-05-20 17:15:36 -04:00
|
|
|
textures/workers.cpp
|
|
|
|
textures/workers.h
|
2021-05-21 16:19:35 -04:00
|
|
|
transform_feedback.cpp
|
|
|
|
transform_feedback.h
|
2018-01-17 19:37:34 -05:00
|
|
|
video_core.cpp
|
|
|
|
video_core.h
|
2020-12-25 00:01:13 -05:00
|
|
|
vulkan_common/vulkan_debug_callback.cpp
|
|
|
|
vulkan_common/vulkan_debug_callback.h
|
2020-12-25 23:19:46 -05:00
|
|
|
vulkan_common/vulkan_device.cpp
|
|
|
|
vulkan_common/vulkan_device.h
|
2020-12-24 20:05:48 -05:00
|
|
|
vulkan_common/vulkan_instance.cpp
|
|
|
|
vulkan_common/vulkan_instance.h
|
2020-12-24 19:24:34 -05:00
|
|
|
vulkan_common/vulkan_library.cpp
|
|
|
|
vulkan_common/vulkan_library.h
|
2021-01-03 16:17:57 -05:00
|
|
|
vulkan_common/vulkan_memory_allocator.cpp
|
|
|
|
vulkan_common/vulkan_memory_allocator.h
|
2020-12-25 00:14:15 -05:00
|
|
|
vulkan_common/vulkan_surface.cpp
|
|
|
|
vulkan_common/vulkan_surface.h
|
2020-12-24 19:30:11 -05:00
|
|
|
vulkan_common/vulkan_wrapper.cpp
|
|
|
|
vulkan_common/vulkan_wrapper.h
|
2020-12-25 23:26:52 -05:00
|
|
|
vulkan_common/nsight_aftermath_tracker.cpp
|
|
|
|
vulkan_common/nsight_aftermath_tracker.h
|
2018-01-17 19:37:34 -05:00
|
|
|
)
|
2014-04-05 16:04:25 -04:00
|
|
|
|
2018-01-17 19:37:34 -05:00
|
|
|
create_target_directory_groups(video_core)
|
2014-08-23 21:22:05 -04:00
|
|
|
|
2017-05-27 21:26:55 -04:00
|
|
|
target_link_libraries(video_core PUBLIC common core)
|
2023-05-20 17:15:36 -04:00
|
|
|
target_link_libraries(video_core PUBLIC glad shader_recompiler stb)
|
2020-03-30 04:21:59 -04:00
|
|
|
|
2022-12-30 03:29:53 -05:00
|
|
|
if (YUZU_USE_BUNDLED_FFMPEG AND NOT (WIN32 OR ANDROID))
|
2021-02-05 13:45:10 -05:00
|
|
|
add_dependencies(video_core ffmpeg-build)
|
2020-10-26 23:07:36 -04:00
|
|
|
endif()
|
|
|
|
|
2021-02-05 15:39:19 -05:00
|
|
|
target_include_directories(video_core PRIVATE ${FFmpeg_INCLUDE_DIR})
|
|
|
|
target_link_libraries(video_core PRIVATE ${FFmpeg_LIBRARIES})
|
2021-08-07 01:02:51 -04:00
|
|
|
target_link_options(video_core PRIVATE ${FFmpeg_LDFLAGS})
|
2021-02-05 13:45:10 -05:00
|
|
|
|
2020-08-23 20:28:15 -04:00
|
|
|
add_dependencies(video_core host_shaders)
|
|
|
|
target_include_directories(video_core PRIVATE ${HOST_SHADERS_INCLUDE})
|
2022-11-25 13:35:46 -05:00
|
|
|
target_link_libraries(video_core PRIVATE sirit Vulkan::Headers)
|
2019-11-08 15:14:21 -05:00
|
|
|
|
2020-03-30 04:21:59 -04:00
|
|
|
if (ENABLE_NSIGHT_AFTERMATH)
|
|
|
|
if (NOT DEFINED ENV{NSIGHT_AFTERMATH_SDK})
|
2021-01-23 02:15:27 -05:00
|
|
|
message(FATAL_ERROR "Environment variable NSIGHT_AFTERMATH_SDK has to be provided")
|
2020-03-30 04:21:59 -04:00
|
|
|
endif()
|
|
|
|
if (NOT WIN32)
|
2021-01-23 02:15:27 -05:00
|
|
|
message(FATAL_ERROR "Nsight Aftermath doesn't support non-Windows platforms")
|
2020-03-30 04:21:59 -04:00
|
|
|
endif()
|
|
|
|
target_compile_definitions(video_core PRIVATE HAS_NSIGHT_AFTERMATH)
|
|
|
|
target_include_directories(video_core PRIVATE "$ENV{NSIGHT_AFTERMATH_SDK}/include")
|
|
|
|
endif()
|
|
|
|
|
2019-11-08 15:14:21 -05:00
|
|
|
if (MSVC)
|
2020-12-05 11:40:14 -05:00
|
|
|
target_compile_options(video_core PRIVATE
|
2021-06-28 03:53:52 -04:00
|
|
|
/we4242 # 'identifier': conversion from 'type1' to 'type2', possible loss of data
|
|
|
|
/we4244 # 'conversion': conversion from 'type1' to 'type2', possible loss of data
|
2020-12-05 11:40:14 -05:00
|
|
|
)
|
2019-11-08 15:14:21 -05:00
|
|
|
else()
|
2022-12-03 13:32:24 -05:00
|
|
|
if (APPLE)
|
|
|
|
# error: declaration shadows a typedef in 'interval_base_set<SubType, DomainT, Compare, Interval, Alloc>'
|
|
|
|
# error: implicit conversion loses integer precision: 'int' to 'boost::icl::bound_type' (aka 'unsigned char')
|
|
|
|
target_compile_options(video_core PRIVATE -Wno-shadow -Wno-unused-local-typedef)
|
|
|
|
else()
|
|
|
|
target_compile_options(video_core PRIVATE -Werror=conversion)
|
|
|
|
endif()
|
2020-10-20 19:24:28 -04:00
|
|
|
|
2022-12-03 13:32:24 -05:00
|
|
|
target_compile_options(video_core PRIVATE
|
2022-10-21 02:34:06 -04:00
|
|
|
-Wno-sign-conversion
|
2020-10-02 20:19:35 -04:00
|
|
|
)
|
2022-11-06 16:45:36 -05:00
|
|
|
|
|
|
|
# xbyak
|
|
|
|
set_source_files_properties(macro/macro_jit_x64.cpp PROPERTIES COMPILE_OPTIONS "-Wno-conversion;-Wno-shadow")
|
2019-11-08 15:14:21 -05:00
|
|
|
endif()
|
2022-05-31 14:37:37 -04:00
|
|
|
|
|
|
|
if (ARCHITECTURE_x86_64)
|
2022-11-06 16:45:36 -05:00
|
|
|
target_sources(video_core PRIVATE
|
|
|
|
macro/macro_jit_x64.cpp
|
|
|
|
macro/macro_jit_x64.h
|
|
|
|
)
|
2022-11-25 13:35:46 -05:00
|
|
|
target_link_libraries(video_core PUBLIC xbyak::xbyak)
|
2022-11-06 16:45:36 -05:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if (ARCHITECTURE_x86_64 OR ARCHITECTURE_arm64)
|
2022-11-25 13:35:46 -05:00
|
|
|
target_link_libraries(video_core PRIVATE dynarmic::dynarmic)
|
2022-05-31 14:37:37 -04:00
|
|
|
endif()
|
2022-11-22 18:38:23 -05:00
|
|
|
|
|
|
|
if (YUZU_USE_PRECOMPILED_HEADERS)
|
|
|
|
target_precompile_headers(video_core PRIVATE precompiled_headers.h)
|
|
|
|
endif()
|
2023-02-26 23:01:44 -05:00
|
|
|
|
|
|
|
if (YUZU_ENABLE_LTO)
|
|
|
|
set_property(TARGET video_core PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)
|
|
|
|
endif()
|
2023-01-01 18:34:38 -05:00
|
|
|
|
|
|
|
if (ANDROID)
|
|
|
|
target_link_libraries(video_core PRIVATE adrenotools)
|
|
|
|
endif()
|