mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-21 21:26:11 +01:00
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:
parent
d85137ed65
commit
5a02da445a
2 changed files with 8 additions and 3 deletions
|
|
@ -35,7 +35,7 @@ include(CreateDirectoryGroups)
|
|||
create_directory_groups(${SRCS} ${HEADERS})
|
||||
|
||||
add_executable(dynarmic_tests ${SRCS})
|
||||
target_link_libraries(dynarmic_tests PRIVATE dynarmic boost catch ${llvm_libs})
|
||||
target_link_libraries(dynarmic_tests PRIVATE dynarmic boost catch)
|
||||
target_include_directories(dynarmic_tests PRIVATE . ../src)
|
||||
target_compile_options(dynarmic_tests PRIVATE ${DYNARMIC_CXX_FLAGS})
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue