CMake: Output helper process binaries to bin instead of libexec

libexec is not a standard convention on Windows. Everything should go
into bin
This commit is contained in:
ayeteadoe 2025-08-23 23:50:57 -07:00 committed by Andrew Kaster
parent 6261c433a3
commit 20f9510687
Notes: github-actions[bot] 2025-10-30 03:09:27 +00:00

View file

@ -82,7 +82,7 @@ endif()
function(set_helper_process_properties)
set(targets ${ARGV})
if (APPLE)
if (APPLE OR WIN32)
# Store helper processes in the same bundle directory as the main application
set_target_properties(${targets} PROPERTIES RUNTIME_OUTPUT_DIRECTORY "$<TARGET_FILE_DIR:ladybird>")
else()