build: Bundle libraries in-place as well on MSVC. (#6665)
This commit is contained in:
parent
df9cc1b84c
commit
9d4609e29a
5 changed files with 64 additions and 12 deletions
|
@ -32,3 +32,9 @@ endif()
|
|||
if (CITRA_USE_PRECOMPILED_HEADERS)
|
||||
target_precompile_headers(citra PRIVATE precompiled_headers.h)
|
||||
endif()
|
||||
|
||||
# Bundle in-place on MSVC so dependencies can be resolved by builds.
|
||||
if (MSVC)
|
||||
include(BundleTarget)
|
||||
bundle_target_in_place(citra)
|
||||
endif()
|
||||
|
|
|
@ -356,3 +356,9 @@ endif()
|
|||
if (CITRA_USE_PRECOMPILED_HEADERS)
|
||||
target_precompile_headers(citra-qt PRIVATE precompiled_headers.h)
|
||||
endif()
|
||||
|
||||
# Bundle in-place on MSVC so dependencies can be resolved by builds.
|
||||
if (MSVC)
|
||||
include(BundleTarget)
|
||||
bundle_target_in_place(citra-qt)
|
||||
endif()
|
||||
|
|
|
@ -27,3 +27,9 @@ endif()
|
|||
if (CITRA_USE_PRECOMPILED_HEADERS)
|
||||
target_precompile_headers(citra-room PRIVATE precompiled_headers.h)
|
||||
endif()
|
||||
|
||||
# Bundle in-place on MSVC so dependencies can be resolved by builds.
|
||||
if (MSVC)
|
||||
include(BundleTarget)
|
||||
bundle_target_in_place(citra-room)
|
||||
endif()
|
||||
|
|
|
@ -28,3 +28,9 @@ add_test(NAME tests COMMAND tests)
|
|||
if (CITRA_USE_PRECOMPILED_HEADERS)
|
||||
target_precompile_headers(tests PRIVATE precompiled_headers.h)
|
||||
endif()
|
||||
|
||||
# Bundle in-place on MSVC so dependencies can be resolved by builds.
|
||||
if (MSVC)
|
||||
include(BundleTarget)
|
||||
bundle_target_in_place(tests)
|
||||
endif()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue