Regenerate tests that use helper processes
This is needed to make sure the output directory is in the correct place somewhere under tests, rather than in $prefix/bin. Change-Id: I98afa9c0a7517a8a10866b4c626bd4c4d2fd214f Reviewed-by: Tobias Hunger <tobias.hunger@qt.io> Reviewed-by: Leander Beernaert <leander.beernaert@qt.io> Reviewed-by: Qt CMake Build Bot
This commit is contained in:
parent
f96faa95aa
commit
3d1c6b76e7
@ -1,11 +1,10 @@
|
|||||||
# Generated from signalbug.pro.
|
# Generated from signalbug.pro.
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
## signalbug Binary:
|
## signalbug_helper Binary:
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
add_qt_executable(signalbug
|
add_qt_test_helper(signalbug_helper
|
||||||
GUI
|
|
||||||
SOURCES
|
SOURCES
|
||||||
signalbug.cpp signalbug.h
|
signalbug.cpp signalbug.h
|
||||||
)
|
)
|
||||||
|
@ -1,11 +1,10 @@
|
|||||||
# Generated from producerconsumer.pro.
|
# Generated from producerconsumer.pro.
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
## producerconsumer Binary:
|
## producerconsumer_helper Binary:
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
add_qt_executable(producerconsumer
|
add_qt_test_helper(producerconsumer_helper
|
||||||
GUI
|
|
||||||
SOURCES
|
SOURCES
|
||||||
main.cpp
|
main.cpp
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
@ -1,11 +1,10 @@
|
|||||||
# Generated from acquirerelease.pro.
|
# Generated from acquirerelease.pro.
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
## acquirerelease Binary:
|
## acquirerelease_helper Binary:
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
add_qt_executable(acquirerelease
|
add_qt_test_helper(acquirerelease_helper
|
||||||
GUI
|
|
||||||
SOURCES
|
SOURCES
|
||||||
main.cpp
|
main.cpp
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
@ -5,8 +5,9 @@
|
|||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
add_qt_executable(qpong
|
add_qt_executable(qpong
|
||||||
|
OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/./"
|
||||||
SOURCES
|
SOURCES
|
||||||
qpong.cpp
|
qpong.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::DBus
|
Qt::DBus
|
||||||
)
|
)
|
||||||
|
@ -5,9 +5,7 @@
|
|||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
add_qt_executable(echo
|
add_qt_executable(echo
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
SOURCES
|
SOURCES
|
||||||
main.cpp
|
main.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
#### Keys ignored in scope 1:.:.:echo.pro:<TRUE>:
|
|
||||||
# CONFIG = "-debug_and_release_target" "cmdline"
|
|
||||||
|
@ -5,12 +5,9 @@
|
|||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
add_qt_executable(lackey
|
add_qt_executable(lackey
|
||||||
|
OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/./"
|
||||||
SOURCES
|
SOURCES
|
||||||
main.cpp
|
main.cpp
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::Network
|
Qt::Network
|
||||||
)
|
)
|
||||||
|
|
||||||
#### Keys ignored in scope 1:.:.:lackey.pro:<TRUE>:
|
|
||||||
# CONFIG = "cmdline"
|
|
||||||
# DESTDIR = "./"
|
|
||||||
|
@ -5,13 +5,10 @@
|
|||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
add_qt_executable(socketprocess
|
add_qt_executable(socketprocess
|
||||||
|
OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/./"
|
||||||
SOURCES
|
SOURCES
|
||||||
main.cpp
|
main.cpp
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::Network
|
Qt::Network
|
||||||
Qt::Test
|
Qt::Test
|
||||||
)
|
)
|
||||||
|
|
||||||
#### Keys ignored in scope 1:.:.:socketprocess.pro:<TRUE>:
|
|
||||||
# CONFIG = "cmdline"
|
|
||||||
# DESTDIR = "./"
|
|
||||||
|
@ -6,18 +6,12 @@
|
|||||||
|
|
||||||
add_qt_executable(crashingServer
|
add_qt_executable(crashingServer
|
||||||
GUI
|
GUI
|
||||||
|
OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/./"
|
||||||
SOURCES
|
SOURCES
|
||||||
main.cpp
|
main.cpp
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::Network
|
Qt::Network
|
||||||
)
|
)
|
||||||
|
|
||||||
#### Keys ignored in scope 1:.:.:crashingServer.pro:<TRUE>:
|
|
||||||
# CONFIG = "-app_bundle"
|
|
||||||
# DESTDIR = "./"
|
|
||||||
|
|
||||||
## Scopes:
|
## Scopes:
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
#### Keys ignored in scope 2:.:.:crashingServer.pro:mingw:
|
|
||||||
# CONFIG = "console"
|
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
add_qt_executable(stressTest
|
add_qt_executable(stressTest
|
||||||
|
OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/./"
|
||||||
SOURCES
|
SOURCES
|
||||||
Test.cpp Test.h
|
Test.cpp Test.h
|
||||||
main.cpp
|
main.cpp
|
||||||
@ -14,7 +15,5 @@ add_qt_executable(stressTest
|
|||||||
)
|
)
|
||||||
|
|
||||||
#### Keys ignored in scope 1:.:.:stressTest.pro:<TRUE>:
|
#### Keys ignored in scope 1:.:.:stressTest.pro:<TRUE>:
|
||||||
# CONFIG = "cmdline"
|
|
||||||
# DESTDIR = "./"
|
|
||||||
# MOC_DIR = ".moc/"
|
# MOC_DIR = ".moc/"
|
||||||
# TMP_DIR = ".tmp/"
|
# TMP_DIR = ".tmp/"
|
||||||
|
@ -5,12 +5,9 @@
|
|||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
add_qt_executable(clientserver
|
add_qt_executable(clientserver
|
||||||
|
OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/./"
|
||||||
SOURCES
|
SOURCES
|
||||||
main.cpp
|
main.cpp
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::Network
|
Qt::Network
|
||||||
)
|
)
|
||||||
|
|
||||||
#### Keys ignored in scope 1:.:.:clientserver.pro:<TRUE>:
|
|
||||||
# CONFIG = "cmdline"
|
|
||||||
# DESTDIR = "./"
|
|
||||||
|
@ -5,11 +5,9 @@
|
|||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
add_qt_executable(udpServer
|
add_qt_executable(udpServer
|
||||||
|
OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/./" # special case
|
||||||
SOURCES
|
SOURCES
|
||||||
main.cpp
|
main.cpp
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::Network
|
Qt::Network
|
||||||
)
|
)
|
||||||
|
|
||||||
#### Keys ignored in scope 1:.:.:udpServer.pro:<TRUE>:
|
|
||||||
# CONFIG = "cmdline"
|
|
||||||
|
Loading…
Reference in New Issue
Block a user