From 3533d33ff5d76afe3a8ff67f586effc5f0a1831e Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 21 Nov 2018 02:20:22 -0500 Subject: common: Remove dependency on xbyak Xbyak is currently entirely unused. Rather than carting it along, remove it and get rid of a dependency. If it's ever needed in the future, then it can be re-added (and likely be more up to date at that point in time). --- src/common/CMakeLists.txt | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/common/CMakeLists.txt') diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index eccd8f64a..895ee53f1 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -95,14 +95,9 @@ if(ARCHITECTURE_x86_64) PRIVATE x64/cpu_detect.cpp x64/cpu_detect.h - x64/xbyak_abi.h - x64/xbyak_util.h ) endif() create_target_directory_groups(common) target_link_libraries(common PUBLIC Boost::boost fmt microprofile) -if (ARCHITECTURE_x86_64) - target_link_libraries(common PRIVATE xbyak) -endif() -- cgit v1.2.3