summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2017-05-27 22:34:52 -0700
committerGravatar Yuri Kunde Schlesner2017-05-27 22:34:52 -0700
commitd736cca848a12788652e366b5554063c99f06cca (patch)
tree9ad4ff2c52c782fe7b972712cbbfb608c37555aa /src/common
parentCMake: Remove unnecessary include_directories for dynarmic (diff)
downloadyuzu-d736cca848a12788652e366b5554063c99f06cca.tar.gz
yuzu-d736cca848a12788652e366b5554063c99f06cca.tar.xz
yuzu-d736cca848a12788652e366b5554063c99f06cca.zip
CMake: Create INTERFACE targets for microprofile and nihstro
Diffstat (limited to 'src/common')
-rw-r--r--src/common/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt
index 3899007fe..7e83e64b0 100644
--- a/src/common/CMakeLists.txt
+++ b/src/common/CMakeLists.txt
@@ -95,7 +95,7 @@ endif()
95create_directory_groups(${SRCS} ${HEADERS}) 95create_directory_groups(${SRCS} ${HEADERS})
96 96
97add_library(common STATIC ${SRCS} ${HEADERS}) 97add_library(common STATIC ${SRCS} ${HEADERS})
98target_link_libraries(common PUBLIC Boost::boost) 98target_link_libraries(common PUBLIC Boost::boost microprofile)
99if (ARCHITECTURE_x86_64) 99if (ARCHITECTURE_x86_64)
100 target_link_libraries(common PRIVATE xbyak) 100 target_link_libraries(common PRIVATE xbyak)
101endif() 101endif()