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.txt4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt
index 6905d2d50..a33a8cdbe 100644
--- a/src/common/CMakeLists.txt
+++ b/src/common/CMakeLists.txt
@@ -27,7 +27,6 @@ configure_file("${CMAKE_CURRENT_SOURCE_DIR}/scm_rev.cpp.in" "${CMAKE_CURRENT_SOU
27set(SRCS 27set(SRCS
28 break_points.cpp 28 break_points.cpp
29 file_util.cpp 29 file_util.cpp
30 framebuffer_layout.cpp
31 hash.cpp 30 hash.cpp
32 logging/filter.cpp 31 logging/filter.cpp
33 logging/text_formatter.cpp 32 logging/text_formatter.cpp
@@ -56,7 +55,6 @@ set(HEADERS
56 common_paths.h 55 common_paths.h
57 common_types.h 56 common_types.h
58 file_util.h 57 file_util.h
59 framebuffer_layout.h
60 hash.h 58 hash.h
61 linear_disk_cache.h 59 linear_disk_cache.h
62 logging/text_formatter.h 60 logging/text_formatter.h
@@ -98,5 +96,5 @@ create_directory_groups(${SRCS} ${HEADERS})
98 96
99add_library(common STATIC ${SRCS} ${HEADERS}) 97add_library(common STATIC ${SRCS} ${HEADERS})
100if (ARCHITECTURE_x86_64) 98if (ARCHITECTURE_x86_64)
101 target_link_libraries(common xbyak) 99 target_link_libraries(common PRIVATE xbyak)
102endif() 100endif()