summaryrefslogtreecommitdiff
path: root/src/common/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/CMakeLists.txt')
-rw-r--r--src/common/CMakeLists.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt
index bdd885273..5639021d3 100644
--- a/src/common/CMakeLists.txt
+++ b/src/common/CMakeLists.txt
@@ -47,6 +47,7 @@ add_custom_command(OUTPUT scm_rev.cpp
47 "${VIDEO_CORE}/shader/decode/integer_set.cpp" 47 "${VIDEO_CORE}/shader/decode/integer_set.cpp"
48 "${VIDEO_CORE}/shader/decode/integer_set_predicate.cpp" 48 "${VIDEO_CORE}/shader/decode/integer_set_predicate.cpp"
49 "${VIDEO_CORE}/shader/decode/memory.cpp" 49 "${VIDEO_CORE}/shader/decode/memory.cpp"
50 "${VIDEO_CORE}/shader/decode/texture.cpp"
50 "${VIDEO_CORE}/shader/decode/other.cpp" 51 "${VIDEO_CORE}/shader/decode/other.cpp"
51 "${VIDEO_CORE}/shader/decode/predicate_set_predicate.cpp" 52 "${VIDEO_CORE}/shader/decode/predicate_set_predicate.cpp"
52 "${VIDEO_CORE}/shader/decode/predicate_set_register.cpp" 53 "${VIDEO_CORE}/shader/decode/predicate_set_register.cpp"
@@ -90,11 +91,18 @@ add_library(common STATIC
90 logging/log.h 91 logging/log.h
91 logging/text_formatter.cpp 92 logging/text_formatter.cpp
92 logging/text_formatter.h 93 logging/text_formatter.h
94 lz4_compression.cpp
95 lz4_compression.h
93 math_util.h 96 math_util.h
97 memory_hook.cpp
98 memory_hook.h
94 microprofile.cpp 99 microprofile.cpp
95 microprofile.h 100 microprofile.h
96 microprofileui.h 101 microprofileui.h
97 misc.cpp 102 misc.cpp
103 multi_level_queue.h
104 page_table.cpp
105 page_table.h
98 param_package.cpp 106 param_package.cpp
99 param_package.h 107 param_package.h
100 quaternion.h 108 quaternion.h
@@ -113,6 +121,8 @@ add_library(common STATIC
113 threadsafe_queue.h 121 threadsafe_queue.h
114 timer.cpp 122 timer.cpp
115 timer.h 123 timer.h
124 uint128.cpp
125 uint128.h
116 vector_math.h 126 vector_math.h
117 web_result.h 127 web_result.h
118) 128)
@@ -128,3 +138,4 @@ endif()
128create_target_directory_groups(common) 138create_target_directory_groups(common)
129 139
130target_link_libraries(common PUBLIC Boost::boost fmt microprofile) 140target_link_libraries(common PUBLIC Boost::boost fmt microprofile)
141target_link_libraries(common PRIVATE lz4_static)