Don't use CMAKE_RUNTIME_OUTPUT_DIRECTORY for Linux

Windows and macos installer scripts are still used and they rely on that folder
This commit is contained in:
luisangelsm
2026-03-30 16:41:54 +02:00
parent 1a28111dae
commit 74aebffd9b

View File

@ -147,7 +147,9 @@ qt_standard_project_setup()
include(PdfBackend)
# Output directory
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin")
if(WIN32 OR APPLE)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin")
endif()
# Build number define
if(BUILD_NUMBER)