2019-01-14 04:58:46 +00:00
|
|
|
# Add a custom command to generate a new shader_cache_version hash when any of the following files change
|
|
|
|
# NOTE: This is an approximation of what files affect shader generation, its possible something else
|
|
|
|
# could affect the result, but much more unlikely than the following files. Keeping a list of files
|
|
|
|
# like this allows for much better caching since it doesn't force the user to recompile binary shaders every update
|
|
|
|
set(VIDEO_CORE "${CMAKE_SOURCE_DIR}/src/video_core")
|
2019-02-07 00:55:14 +00:00
|
|
|
if (DEFINED ENV{CI})
|
|
|
|
if (DEFINED ENV{TRAVIS})
|
|
|
|
set(BUILD_REPOSITORY $ENV{TRAVIS_REPO_SLUG})
|
|
|
|
set(BUILD_TAG $ENV{TRAVIS_TAG})
|
|
|
|
elseif(DEFINED ENV{APPVEYOR})
|
|
|
|
set(BUILD_REPOSITORY $ENV{APPVEYOR_REPO_NAME})
|
|
|
|
set(BUILD_TAG $ENV{APPVEYOR_REPO_TAG_NAME})
|
|
|
|
endif()
|
|
|
|
endif()
|
2019-01-14 04:58:46 +00:00
|
|
|
add_custom_command(OUTPUT scm_rev.cpp
|
2019-02-07 00:55:14 +00:00
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
-DSRC_DIR="${CMAKE_SOURCE_DIR}"
|
|
|
|
-DBUILD_REPOSITORY="${BUILD_REPOSITORY}"
|
|
|
|
-DBUILD_TAG="${BUILD_TAG}"
|
|
|
|
-P "${CMAKE_SOURCE_DIR}/CMakeModules/GenerateSCMRev.cmake"
|
2019-01-14 04:58:46 +00:00
|
|
|
DEPENDS
|
|
|
|
# WARNING! It was too much work to try and make a common location for this list,
|
|
|
|
# so if you need to change it, please update CMakeModules/GenerateSCMRev.cmake as well
|
|
|
|
"${VIDEO_CORE}/renderer_opengl/gl_shader_cache.cpp"
|
|
|
|
"${VIDEO_CORE}/renderer_opengl/gl_shader_cache.h"
|
|
|
|
"${VIDEO_CORE}/renderer_opengl/gl_shader_decompiler.cpp"
|
|
|
|
"${VIDEO_CORE}/renderer_opengl/gl_shader_decompiler.h"
|
|
|
|
"${VIDEO_CORE}/renderer_opengl/gl_shader_disk_cache.cpp"
|
|
|
|
"${VIDEO_CORE}/renderer_opengl/gl_shader_disk_cache.h"
|
|
|
|
"${VIDEO_CORE}/renderer_opengl/gl_shader_gen.cpp"
|
|
|
|
"${VIDEO_CORE}/renderer_opengl/gl_shader_gen.h"
|
|
|
|
"${VIDEO_CORE}/shader/decode/arithmetic.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/arithmetic_half.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/arithmetic_half_immediate.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/arithmetic_immediate.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/arithmetic_integer.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/arithmetic_integer_immediate.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/bfe.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/bfi.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/conversion.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/ffma.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/float_set.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/float_set_predicate.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/half_set.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/half_set_predicate.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/hfma2.cpp"
|
2019-04-27 05:07:18 +00:00
|
|
|
"${VIDEO_CORE}/shader/decode/image.cpp"
|
2019-01-14 04:58:46 +00:00
|
|
|
"${VIDEO_CORE}/shader/decode/integer_set.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/integer_set_predicate.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/memory.cpp"
|
2019-02-22 05:19:45 +00:00
|
|
|
"${VIDEO_CORE}/shader/decode/texture.cpp"
|
2019-01-14 04:58:46 +00:00
|
|
|
"${VIDEO_CORE}/shader/decode/other.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/predicate_set_predicate.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/predicate_set_register.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/register_set_predicate.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/shift.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/video.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode/xmad.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/decode.cpp"
|
2019-06-06 23:11:48 +00:00
|
|
|
"${VIDEO_CORE}/shader/node.h"
|
|
|
|
"${VIDEO_CORE}/shader/node_helper.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/node_helper.h"
|
2019-01-14 04:58:46 +00:00
|
|
|
"${VIDEO_CORE}/shader/shader_ir.cpp"
|
|
|
|
"${VIDEO_CORE}/shader/shader_ir.h"
|
|
|
|
"${VIDEO_CORE}/shader/track.cpp"
|
|
|
|
# and also check that the scm_rev files haven't changed
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/scm_rev.cpp.in"
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/scm_rev.h"
|
|
|
|
# technically we should regenerate if the git version changed, but its not worth the effort imo
|
|
|
|
"${CMAKE_SOURCE_DIR}/CMakeModules/GenerateSCMRev.cmake"
|
|
|
|
)
|
2014-04-24 01:43:57 +00:00
|
|
|
|
2018-01-18 00:37:34 +00:00
|
|
|
add_library(common STATIC
|
|
|
|
alignment.h
|
|
|
|
assert.h
|
2018-09-16 18:05:51 +00:00
|
|
|
detached_tasks.cpp
|
|
|
|
detached_tasks.h
|
2019-07-05 01:10:59 +00:00
|
|
|
binary_find.h
|
2018-01-18 00:37:34 +00:00
|
|
|
bit_field.h
|
2018-12-19 20:25:12 +00:00
|
|
|
bit_util.h
|
2018-04-07 04:48:22 +00:00
|
|
|
cityhash.cpp
|
|
|
|
cityhash.h
|
2018-01-18 00:37:34 +00:00
|
|
|
color.h
|
|
|
|
common_funcs.h
|
|
|
|
common_paths.h
|
|
|
|
common_types.h
|
|
|
|
file_util.cpp
|
|
|
|
file_util.h
|
|
|
|
hash.h
|
2018-08-10 00:43:45 +00:00
|
|
|
hex_util.cpp
|
|
|
|
hex_util.h
|
2018-01-18 00:37:34 +00:00
|
|
|
logging/backend.cpp
|
|
|
|
logging/backend.h
|
|
|
|
logging/filter.cpp
|
|
|
|
logging/filter.h
|
|
|
|
logging/log.h
|
|
|
|
logging/text_formatter.cpp
|
|
|
|
logging/text_formatter.h
|
2019-02-08 05:45:50 +00:00
|
|
|
lz4_compression.cpp
|
|
|
|
lz4_compression.h
|
2018-01-18 00:37:34 +00:00
|
|
|
math_util.h
|
2019-03-02 20:20:28 +00:00
|
|
|
memory_hook.cpp
|
|
|
|
memory_hook.h
|
2018-01-18 00:37:34 +00:00
|
|
|
microprofile.cpp
|
|
|
|
microprofile.h
|
|
|
|
microprofileui.h
|
|
|
|
misc.cpp
|
2019-03-16 02:50:57 +00:00
|
|
|
multi_level_queue.h
|
2019-03-02 20:20:28 +00:00
|
|
|
page_table.cpp
|
|
|
|
page_table.h
|
2018-01-18 00:37:34 +00:00
|
|
|
param_package.cpp
|
|
|
|
param_package.h
|
|
|
|
quaternion.h
|
2018-09-08 13:28:39 +00:00
|
|
|
ring_buffer.h
|
2018-01-18 00:37:34 +00:00
|
|
|
scm_rev.cpp
|
|
|
|
scm_rev.h
|
|
|
|
scope_exit.h
|
|
|
|
string_util.cpp
|
|
|
|
string_util.h
|
|
|
|
swap.h
|
|
|
|
telemetry.cpp
|
|
|
|
telemetry.h
|
|
|
|
thread.cpp
|
|
|
|
thread.h
|
|
|
|
thread_queue_list.h
|
|
|
|
threadsafe_queue.h
|
|
|
|
timer.cpp
|
|
|
|
timer.h
|
2019-02-15 23:26:41 +00:00
|
|
|
uint128.cpp
|
|
|
|
uint128.h
|
2018-12-18 14:07:25 +00:00
|
|
|
uuid.cpp
|
|
|
|
uuid.h
|
2018-01-18 00:37:34 +00:00
|
|
|
vector_math.h
|
2018-09-16 18:05:51 +00:00
|
|
|
web_result.h
|
2019-02-08 22:11:00 +00:00
|
|
|
zstd_compression.cpp
|
|
|
|
zstd_compression.h
|
2018-01-18 00:37:34 +00:00
|
|
|
)
|
2014-08-24 01:22:05 +00:00
|
|
|
|
2015-08-15 02:29:08 +00:00
|
|
|
if(ARCHITECTURE_x86_64)
|
2018-01-18 00:37:34 +00:00
|
|
|
target_sources(common
|
|
|
|
PRIVATE
|
2015-08-12 04:19:20 +00:00
|
|
|
x64/cpu_detect.cpp
|
|
|
|
x64/cpu_detect.h
|
2018-01-18 00:37:34 +00:00
|
|
|
)
|
2015-07-21 23:49:33 +00:00
|
|
|
endif()
|
|
|
|
|
2018-01-18 00:37:34 +00:00
|
|
|
create_target_directory_groups(common)
|
2014-04-29 02:40:39 +00:00
|
|
|
|
2019-03-21 01:40:18 +00:00
|
|
|
target_link_libraries(common PUBLIC Boost::boost fmt microprofile)
|
2019-02-08 22:03:53 +00:00
|
|
|
target_link_libraries(common PRIVATE lz4_static libzstd_static)
|