CMakeLists: Only link LLVM libs against the library

LLVM library code is only used within the main dynarmic library, not the test executable.
This commit is contained in:
Lioncash 2017-03-07 16:53:33 -05:00 committed by Merry
parent d85137ed65
commit 5a02da445a
2 changed files with 8 additions and 3 deletions

View file

@ -109,8 +109,13 @@ target_include_directories(dynarmic
PUBLIC ../include
PRIVATE .)
target_compile_options(dynarmic PRIVATE ${DYNARMIC_CXX_FLAGS})
target_link_libraries(dynarmic PRIVATE boost fmt-header-only xbyak)
target_link_libraries(dynarmic
PRIVATE
boost
fmt-header-only
xbyak
$<$<BOOL:DYNARMIC_USE_LLVM>:${llvm_libs}>
)
if (CMAKE_SYSTEM_NAME STREQUAL "Windows")
target_compile_definitions(dynarmic PRIVATE FMT_USE_WINDOWS_H=0)
endif()