diff --git a/plugins/win-capture/get-graphics-offsets/cmake/32bit-build.cmake b/plugins/win-capture/get-graphics-offsets/cmake/32bit-build.cmake index 4affae68f..f6358a486 100644 --- a/plugins/win-capture/get-graphics-offsets/cmake/32bit-build.cmake +++ b/plugins/win-capture/get-graphics-offsets/cmake/32bit-build.cmake @@ -2,4 +2,7 @@ project(get-graphics-offsets) add_executable(get-graphics-offsets) target_link_libraries(get-graphics-offsets PRIVATE _get-graphics-offsets) -set_property(TARGET get-graphics-offsets PROPERTY OUTPUT_NAME get-graphics-offsets32) + +# cmake-format: off +set_target_properties(get-graphics-offsets PROPERTIES OUTPUT_NAME get-graphics-offsets32 MSVC_RUNTIME_LIBRARY "MultiThreaded$<$:Debug>") +# cmake-format: on diff --git a/plugins/win-capture/graphics-hook/cmake/32bit-build.cmake b/plugins/win-capture/graphics-hook/cmake/32bit-build.cmake index 365c9e735..3d146039b 100644 --- a/plugins/win-capture/graphics-hook/cmake/32bit-build.cmake +++ b/plugins/win-capture/graphics-hook/cmake/32bit-build.cmake @@ -6,4 +6,7 @@ endif() add_library(graphics-hook MODULE) target_link_libraries(graphics-hook PRIVATE _graphics-hook) -set_property(TARGET graphics-hook PROPERTY OUTPUT_NAME graphics-hook32) + +# cmake-format: off +set_target_properties(graphics-hook PROPERTIES OUTPUT_NAME graphics-hook32 MSVC_RUNTIME_LIBRARY "MultiThreaded$<$:Debug>") +# cmake-format: on diff --git a/plugins/win-capture/inject-helper/cmake/32bit-build.cmake b/plugins/win-capture/inject-helper/cmake/32bit-build.cmake index fce6eea49..c7aa677e6 100644 --- a/plugins/win-capture/inject-helper/cmake/32bit-build.cmake +++ b/plugins/win-capture/inject-helper/cmake/32bit-build.cmake @@ -2,4 +2,7 @@ project(inject-helper) add_executable(inject-helper) target_link_libraries(inject-helper PRIVATE _inject-helper) -set_property(TARGET inject-helper PROPERTY OUTPUT_NAME inject-helper32) + +# cmake-format: off +set_target_properties(inject-helper PROPERTIES OUTPUT_NAME inject-helper32 MSVC_RUNTIME_LIBRARY "MultiThreaded$<$:Debug>") +# cmake-format: on