CMake: Fix tst_qclipboard for Win32
Teste executables were not built in the right location. Change-Id: Ice05d44d53f7d8c2e9ec5a7b5c011a24ceb02a09 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
parent
aa9c6f9832
commit
bbf46e38b1
@ -4,7 +4,15 @@
|
|||||||
## copier Binary:
|
## copier Binary:
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
|
# special case begin
|
||||||
|
set(win32_args)
|
||||||
|
if (WIN32)
|
||||||
|
set(win32_args OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
|
||||||
|
endif()
|
||||||
|
# special case end
|
||||||
|
|
||||||
add_qt_executable(copier
|
add_qt_executable(copier
|
||||||
|
${win32_args} # special case
|
||||||
SOURCES
|
SOURCES
|
||||||
main.cpp
|
main.cpp
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
@ -4,7 +4,15 @@
|
|||||||
## paster Binary:
|
## paster Binary:
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
|
# special case begin
|
||||||
|
set(win32_args)
|
||||||
|
if (WIN32)
|
||||||
|
set(win32_args OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
|
||||||
|
endif()
|
||||||
|
# special case end
|
||||||
|
|
||||||
add_qt_executable(paster
|
add_qt_executable(paster
|
||||||
|
${win32_args} # special case
|
||||||
SOURCES
|
SOURCES
|
||||||
main.cpp
|
main.cpp
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Loading…
x
Reference in New Issue
Block a user