summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSona Kurazyan <sona.kurazyan@qt.io>2021-05-28 11:16:14 +0200
committerSona Kurazyan <sona.kurazyan@qt.io>2021-05-31 17:14:13 +0200
commit8756e6501735463ebaf700d8b216a7f481ed9605 (patch)
treed75237978d7f6d2d87abee642c65b2fd0f67c87e
parentd71f499682e21b6b99b3d4ed9c13d819aa4cca05 (diff)
Make qt6_add_repc_{replica, source} plural
Since these functions can take multiple *.rep files, it makes sense to make them plural. Change-Id: I99894e9ee1f6f0035eb8c3e5cdd1292316324577 Reviewed-by: Michael Brasser <michael.brasser@live.com> Reviewed-by: Brett Stottlemyer <bstottle@ford.com>
-rw-r--r--examples/remoteobjects/cppclient/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/plugins/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/server/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/simpleswitch/directconnectclient/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/simpleswitch/directconnectserver/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/simpleswitch/registryconnectedserver/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/ssl/sslcppclient/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/ssl/sslserver/CMakeLists.txt2
-rw-r--r--src/remoteobjects/Qt6RemoteObjectsMacros.cmake4
-rw-r--r--src/remoteobjects/doc/snippets/cmake-macros/CMakeLists.txt4
-rw-r--r--src/remoteobjects/doc/src/qt6-changes.qdoc6
-rw-r--r--src/remoteobjects/doc/src/remoteobjects-repc.qdoc8
-rw-r--r--tests/auto/benchmarks/CMakeLists.txt4
-rw-r--r--tests/auto/external_IODevice/sslTestServer/CMakeLists.txt2
-rw-r--r--tests/auto/external_IODevice/tst_client/CMakeLists.txt2
-rw-r--r--tests/auto/integration/CMakeLists.txt4
-rw-r--r--tests/auto/integration_external/client/CMakeLists.txt2
-rw-r--r--tests/auto/integration_external/server/CMakeLists.txt2
-rw-r--r--tests/auto/integration_multiprocess/client/CMakeLists.txt2
-rw-r--r--tests/auto/integration_multiprocess/server/CMakeLists.txt2
-rw-r--r--tests/auto/pods/CMakeLists.txt2
-rw-r--r--tests/auto/proxy_multiprocess/client/CMakeLists.txt2
-rw-r--r--tests/auto/proxy_multiprocess/server/CMakeLists.txt2
-rw-r--r--tests/auto/repc/enums/CMakeLists.txt2
-rw-r--r--tests/auto/repc/pods/CMakeLists.txt2
-rw-r--r--tests/auto/repc/signature/differentClassEnum/CMakeLists.txt2
-rw-r--r--tests/auto/repc/signature/differentGlobalEnum/CMakeLists.txt2
-rw-r--r--tests/auto/repc/signature/differentPropertyCount/CMakeLists.txt2
-rw-r--r--tests/auto/repc/signature/differentPropertyType/CMakeLists.txt2
-rw-r--r--tests/auto/repc/signature/differentSignalCount/CMakeLists.txt2
-rw-r--r--tests/auto/repc/signature/differentSignalParamCount/CMakeLists.txt2
-rw-r--r--tests/auto/repc/signature/differentSignalParamType/CMakeLists.txt2
-rw-r--r--tests/auto/repc/signature/differentSlotCount/CMakeLists.txt2
-rw-r--r--tests/auto/repc/signature/differentSlotParamCount/CMakeLists.txt2
-rw-r--r--tests/auto/repc/signature/differentSlotParamType/CMakeLists.txt2
-rw-r--r--tests/auto/repc/signature/differentSlotType/CMakeLists.txt2
-rw-r--r--tests/auto/repc/signature/matchAndQuit/CMakeLists.txt2
-rw-r--r--tests/auto/repc/signature/scrambledProperties/CMakeLists.txt2
-rw-r--r--tests/auto/repc/signature/scrambledSignals/CMakeLists.txt2
-rw-r--r--tests/auto/repc/signature/scrambledSlots/CMakeLists.txt2
-rw-r--r--tests/auto/repc/signature/signatureServer/CMakeLists.txt2
-rw-r--r--tests/auto/repc/signature/state/CMakeLists.txt2
-rw-r--r--tests/auto/restart/client/CMakeLists.txt2
-rw-r--r--tests/auto/restart/server/CMakeLists.txt2
44 files changed, 53 insertions, 53 deletions
diff --git a/examples/remoteobjects/cppclient/CMakeLists.txt b/examples/remoteobjects/cppclient/CMakeLists.txt
index d12fe7e..184d5aa 100644
--- a/examples/remoteobjects/cppclient/CMakeLists.txt
+++ b/examples/remoteobjects/cppclient/CMakeLists.txt
@@ -30,7 +30,7 @@ target_link_libraries(CppClient PUBLIC
Qt::RemoteObjects
)
-qt6_add_repc_replica(CppClient
+qt6_add_repc_replicas(CppClient
timemodel.rep
)
diff --git a/examples/remoteobjects/plugins/CMakeLists.txt b/examples/remoteobjects/plugins/CMakeLists.txt
index 35a8fdc..abcefee 100644
--- a/examples/remoteobjects/plugins/CMakeLists.txt
+++ b/examples/remoteobjects/plugins/CMakeLists.txt
@@ -41,7 +41,7 @@ target_link_libraries(qmlqrotimeexampleplugin PUBLIC
Qt::RemoteObjects
)
-qt6_add_repc_replica(qmlqrotimeexampleplugin
+qt6_add_repc_replicas(qmlqrotimeexampleplugin
../timemodel.rep
)
diff --git a/examples/remoteobjects/server/CMakeLists.txt b/examples/remoteobjects/server/CMakeLists.txt
index dad4381..8962973 100644
--- a/examples/remoteobjects/server/CMakeLists.txt
+++ b/examples/remoteobjects/server/CMakeLists.txt
@@ -31,7 +31,7 @@ target_link_libraries(server PUBLIC
Qt::RemoteObjects
)
-qt6_add_repc_source(server
+qt6_add_repc_sources(server
../timemodel.rep
)
diff --git a/examples/remoteobjects/simpleswitch/directconnectclient/CMakeLists.txt b/examples/remoteobjects/simpleswitch/directconnectclient/CMakeLists.txt
index d99d5fc..da2efd2 100644
--- a/examples/remoteobjects/simpleswitch/directconnectclient/CMakeLists.txt
+++ b/examples/remoteobjects/simpleswitch/directconnectclient/CMakeLists.txt
@@ -31,7 +31,7 @@ target_link_libraries(directconnectclient PUBLIC
Qt::RemoteObjects
)
-qt6_add_repc_replica(directconnectclient
+qt6_add_repc_replicas(directconnectclient
simpleswitch.rep
)
diff --git a/examples/remoteobjects/simpleswitch/directconnectserver/CMakeLists.txt b/examples/remoteobjects/simpleswitch/directconnectserver/CMakeLists.txt
index f64b03c..f90cb1e 100644
--- a/examples/remoteobjects/simpleswitch/directconnectserver/CMakeLists.txt
+++ b/examples/remoteobjects/simpleswitch/directconnectserver/CMakeLists.txt
@@ -31,7 +31,7 @@ target_link_libraries(directconnectserver PUBLIC
Qt::RemoteObjects
)
-qt6_add_repc_source(directconnectserver
+qt6_add_repc_sources(directconnectserver
simpleswitch.rep
)
diff --git a/examples/remoteobjects/simpleswitch/registryconnectedserver/CMakeLists.txt b/examples/remoteobjects/simpleswitch/registryconnectedserver/CMakeLists.txt
index 0746cd6..327ed9b 100644
--- a/examples/remoteobjects/simpleswitch/registryconnectedserver/CMakeLists.txt
+++ b/examples/remoteobjects/simpleswitch/registryconnectedserver/CMakeLists.txt
@@ -31,7 +31,7 @@ target_link_libraries(registryconnectedserver PUBLIC
Qt::RemoteObjects
)
-qt6_add_repc_source(registryconnectedserver
+qt6_add_repc_sources(registryconnectedserver
simpleswitch.rep
)
diff --git a/examples/remoteobjects/ssl/sslcppclient/CMakeLists.txt b/examples/remoteobjects/ssl/sslcppclient/CMakeLists.txt
index 3750003..d2e9bc4 100644
--- a/examples/remoteobjects/ssl/sslcppclient/CMakeLists.txt
+++ b/examples/remoteobjects/ssl/sslcppclient/CMakeLists.txt
@@ -53,7 +53,7 @@ qt6_add_resources(SslCppClient "cert"
${cert_resource_files}
)
-qt6_add_repc_replica(SslCppClient
+qt6_add_repc_replicas(SslCppClient
timemodel.rep
)
diff --git a/examples/remoteobjects/ssl/sslserver/CMakeLists.txt b/examples/remoteobjects/ssl/sslserver/CMakeLists.txt
index aabefc7..dc17d68 100644
--- a/examples/remoteobjects/ssl/sslserver/CMakeLists.txt
+++ b/examples/remoteobjects/ssl/sslserver/CMakeLists.txt
@@ -54,7 +54,7 @@ qt6_add_resources(sslserver "cert"
${cert_resource_files}
)
-qt6_add_repc_source(sslserver
+qt6_add_repc_sources(sslserver
../../timemodel.rep
)
diff --git a/src/remoteobjects/Qt6RemoteObjectsMacros.cmake b/src/remoteobjects/Qt6RemoteObjectsMacros.cmake
index a0ace54..76550eb 100644
--- a/src/remoteobjects/Qt6RemoteObjectsMacros.cmake
+++ b/src/remoteobjects/Qt6RemoteObjectsMacros.cmake
@@ -72,13 +72,13 @@ function(qt6_add_repc_files type target)
endfunction()
# Add .rep source files to a target to generate source header files
-function(qt6_add_repc_source target)
+function(qt6_add_repc_sources target)
list(POP_FRONT ARGV)
qt6_add_repc_files(source ${target} FILES ${ARGV})
endfunction()
# Add .rep source files to a target to generate replica header files
-function(qt6_add_repc_replica target)
+function(qt6_add_repc_replicas target)
list(POP_FRONT ARGV)
qt6_add_repc_files(replica ${target} FILES ${ARGV})
endfunction()
diff --git a/src/remoteobjects/doc/snippets/cmake-macros/CMakeLists.txt b/src/remoteobjects/doc/snippets/cmake-macros/CMakeLists.txt
index 5dd3ca4..c17d558 100644
--- a/src/remoteobjects/doc/snippets/cmake-macros/CMakeLists.txt
+++ b/src/remoteobjects/doc/snippets/cmake-macros/CMakeLists.txt
@@ -20,13 +20,13 @@ set(SOURCES
)
#! [simpleSwitch_cmake_add_repc_source]
-qt6_add_repc_source(directconnectserver
+qt6_add_repc_sources(directconnectserver
simpleswitch.rep
)
#! [simpleSwitch_cmake_add_repc_source]
#! [simpleSwitch_cmake_add_repc_replica]
-qt6_add_repc_replica(directconnectclient
+qt6_add_repc_replicas(directconnectclient
simpleswitch.rep
)
#! [simpleSwitch_cmake_add_repc_replica]
diff --git a/src/remoteobjects/doc/src/qt6-changes.qdoc b/src/remoteobjects/doc/src/qt6-changes.qdoc
index 1ef82e1..f51b9c1 100644
--- a/src/remoteobjects/doc/src/qt6-changes.qdoc
+++ b/src/remoteobjects/doc/src/qt6-changes.qdoc
@@ -56,8 +56,8 @@
The \c cmake instructions for calling \l repc and adding the generated
\c .rep files to a CMake project have slightly changed. Instead of the
- \c qt5_generate_repc macro, you should now use \c qt6_add_repc_source,
- \c qt6_add_repc_replica and \c qt6_add_repc_merged functions.
+ \c qt5_generate_repc macro, you should now use \c qt6_add_repc_sources,
+ \c qt6_add_repc_replicas and \c qt6_add_repc_merged functions.
For example, the following code:
\code
@@ -78,7 +78,7 @@
simpleswitch.cpp
)
add_executable(directconnectserver ${SOURCES})
- qt6_add_repc_source(directconnectserver simpleswitch.rep)
+ qt6_add_repc_sources(directconnectserver simpleswitch.rep)
\endcode
More detailed descriptions for these CMake functions can be found
diff --git a/src/remoteobjects/doc/src/remoteobjects-repc.qdoc b/src/remoteobjects/doc/src/remoteobjects-repc.qdoc
index 7a7fb91..ee7dbd6 100644
--- a/src/remoteobjects/doc/src/remoteobjects-repc.qdoc
+++ b/src/remoteobjects/doc/src/remoteobjects-repc.qdoc
@@ -380,10 +380,10 @@
\section1 CMake functions
- \section2 qt6_add_repc_replica
+ \section2 qt6_add_repc_replicas
\code
- qt6_add_repc_replica(target rep_files)
+ qt6_add_repc_replicas(target rep_files)
\endcode
Runs repc and generates the \l Replica header files based on the given \c rep_files.
@@ -395,10 +395,10 @@
The generated file(s) will be of the form \c {rep_<replica file base>_replica.h}.
- \section2 qt6_add_repc_source
+ \section2 qt6_add_repc_sources
\code
- qt6_add_repc_source(target rep_files)
+ qt6_add_repc_sources(target rep_files)
\endcode
Runs repc and generates the \l Source header files based on the given \c rep_files.
diff --git a/tests/auto/benchmarks/CMakeLists.txt b/tests/auto/benchmarks/CMakeLists.txt
index a90f9f1..cde6e5d 100644
--- a/tests/auto/benchmarks/CMakeLists.txt
+++ b/tests/auto/benchmarks/CMakeLists.txt
@@ -12,11 +12,11 @@ qt_internal_add_test(tst_benchmarkstest
Qt::Network
Qt::RemoteObjects
)
-qt6_add_repc_source(tst_benchmarkstest
+qt6_add_repc_sources(tst_benchmarkstest
../repfiles/localdatacenter.rep
../repfiles/tcpdatacenter.rep
)
-qt6_add_repc_replica(tst_benchmarkstest
+qt6_add_repc_replicas(tst_benchmarkstest
../repfiles/localdatacenter.rep
../repfiles/tcpdatacenter.rep
)
diff --git a/tests/auto/external_IODevice/sslTestServer/CMakeLists.txt b/tests/auto/external_IODevice/sslTestServer/CMakeLists.txt
index 101dce1..4f11f48 100644
--- a/tests/auto/external_IODevice/sslTestServer/CMakeLists.txt
+++ b/tests/auto/external_IODevice/sslTestServer/CMakeLists.txt
@@ -36,7 +36,7 @@ qt_internal_add_resource(sslTestServer "cert"
${cert_resource_files}
)
-qt6_add_repc_source(sslTestServer
+qt6_add_repc_sources(sslTestServer
../pingpong.rep
)
diff --git a/tests/auto/external_IODevice/tst_client/CMakeLists.txt b/tests/auto/external_IODevice/tst_client/CMakeLists.txt
index 202ee89..75a9f7d 100644
--- a/tests/auto/external_IODevice/tst_client/CMakeLists.txt
+++ b/tests/auto/external_IODevice/tst_client/CMakeLists.txt
@@ -31,6 +31,6 @@ qt_internal_add_resource(tst_external_IODevice "cert"
${cert_resource_files}
)
-qt6_add_repc_replica(tst_external_IODevice
+qt6_add_repc_replicas(tst_external_IODevice
../pingpong.rep
)
diff --git a/tests/auto/integration/CMakeLists.txt b/tests/auto/integration/CMakeLists.txt
index f6bfabd..9b8c46e 100644
--- a/tests/auto/integration/CMakeLists.txt
+++ b/tests/auto/integration/CMakeLists.txt
@@ -12,12 +12,12 @@ qt_internal_add_test(tst_integration
PUBLIC_LIBRARIES
Qt::RemoteObjects
)
-qt6_add_repc_source(tst_integration
+qt6_add_repc_sources(tst_integration
engine.rep
../repfiles/localdatacenter.rep
../repfiles/tcpdatacenter.rep
)
-qt6_add_repc_replica(tst_integration
+qt6_add_repc_replicas(tst_integration
engine.rep
../repfiles/localdatacenter.rep
../repfiles/tcpdatacenter.rep
diff --git a/tests/auto/integration_external/client/CMakeLists.txt b/tests/auto/integration_external/client/CMakeLists.txt
index 5813caa..9e5d767 100644
--- a/tests/auto/integration_external/client/CMakeLists.txt
+++ b/tests/auto/integration_external/client/CMakeLists.txt
@@ -13,7 +13,7 @@ qt_internal_add_executable(integration_external_client
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(integration_external_client
+qt6_add_repc_replicas(integration_external_client
../MyInterface.rep
)
diff --git a/tests/auto/integration_external/server/CMakeLists.txt b/tests/auto/integration_external/server/CMakeLists.txt
index a47e9d3..c6e2392 100644
--- a/tests/auto/integration_external/server/CMakeLists.txt
+++ b/tests/auto/integration_external/server/CMakeLists.txt
@@ -14,7 +14,7 @@ qt_internal_add_executable(integration_external_server
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_source(integration_external_server
+qt6_add_repc_sources(integration_external_server
../MyInterface.rep
)
diff --git a/tests/auto/integration_multiprocess/client/CMakeLists.txt b/tests/auto/integration_multiprocess/client/CMakeLists.txt
index 2d4514f..4ea8af0 100644
--- a/tests/auto/integration_multiprocess/client/CMakeLists.txt
+++ b/tests/auto/integration_multiprocess/client/CMakeLists.txt
@@ -13,7 +13,7 @@ qt_internal_add_executable(integration_multiprocess_client
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(integration_multiprocess_client
+qt6_add_repc_replicas(integration_multiprocess_client
../MyInterface.rep
)
diff --git a/tests/auto/integration_multiprocess/server/CMakeLists.txt b/tests/auto/integration_multiprocess/server/CMakeLists.txt
index 3ea6138..bb5a9f0 100644
--- a/tests/auto/integration_multiprocess/server/CMakeLists.txt
+++ b/tests/auto/integration_multiprocess/server/CMakeLists.txt
@@ -14,7 +14,7 @@ qt_internal_add_executable(integration_multiprocess_server
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_source(integration_multiprocess_server
+qt6_add_repc_sources(integration_multiprocess_server
../MyInterface.rep
../PodInterface.rep
)
diff --git a/tests/auto/pods/CMakeLists.txt b/tests/auto/pods/CMakeLists.txt
index d677843..d95f7d1 100644
--- a/tests/auto/pods/CMakeLists.txt
+++ b/tests/auto/pods/CMakeLists.txt
@@ -9,7 +9,7 @@ qt_internal_add_test(tst_pods
PUBLIC_LIBRARIES
Qt::RemoteObjects
)
-qt6_add_repc_replica(tst_pods
+qt6_add_repc_replicas(tst_pods
pods.h
)
diff --git a/tests/auto/proxy_multiprocess/client/CMakeLists.txt b/tests/auto/proxy_multiprocess/client/CMakeLists.txt
index e59da64..85877e3 100644
--- a/tests/auto/proxy_multiprocess/client/CMakeLists.txt
+++ b/tests/auto/proxy_multiprocess/client/CMakeLists.txt
@@ -15,7 +15,7 @@ qt_internal_add_executable(proxy_multiprocess_client
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(proxy_multiprocess_client
+qt6_add_repc_replicas(proxy_multiprocess_client
../subclass.rep
)
diff --git a/tests/auto/proxy_multiprocess/server/CMakeLists.txt b/tests/auto/proxy_multiprocess/server/CMakeLists.txt
index d63631b..a3436d7 100644
--- a/tests/auto/proxy_multiprocess/server/CMakeLists.txt
+++ b/tests/auto/proxy_multiprocess/server/CMakeLists.txt
@@ -17,7 +17,7 @@ qt_internal_add_executable(proxy_multiprocess_server
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_source(proxy_multiprocess_server
+qt6_add_repc_sources(proxy_multiprocess_server
../subclass.rep
)
diff --git a/tests/auto/repc/enums/CMakeLists.txt b/tests/auto/repc/enums/CMakeLists.txt
index 67b8f2e..dfebce8 100644
--- a/tests/auto/repc/enums/CMakeLists.txt
+++ b/tests/auto/repc/enums/CMakeLists.txt
@@ -9,7 +9,7 @@ qt_internal_add_test(tst_enums
PUBLIC_LIBRARIES
Qt::RemoteObjects
)
-qt6_add_repc_replica(tst_enums
+qt6_add_repc_replicas(tst_enums
enums.rep
)
diff --git a/tests/auto/repc/pods/CMakeLists.txt b/tests/auto/repc/pods/CMakeLists.txt
index 7abea7b..84746ea 100644
--- a/tests/auto/repc/pods/CMakeLists.txt
+++ b/tests/auto/repc/pods/CMakeLists.txt
@@ -9,7 +9,7 @@ qt_internal_add_test(tst_repc_pods
PUBLIC_LIBRARIES
Qt::RemoteObjects
)
-qt6_add_repc_replica(tst_repc_pods
+qt6_add_repc_replicas(tst_repc_pods
pods.rep
)
diff --git a/tests/auto/repc/signature/differentClassEnum/CMakeLists.txt b/tests/auto/repc/signature/differentClassEnum/CMakeLists.txt
index b2026fa..dd980ad 100644
--- a/tests/auto/repc/signature/differentClassEnum/CMakeLists.txt
+++ b/tests/auto/repc/signature/differentClassEnum/CMakeLists.txt
@@ -13,6 +13,6 @@ qt_internal_add_executable(differentClassEnum
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(differentClassEnum
+qt6_add_repc_replicas(differentClassEnum
mismatch.rep
)
diff --git a/tests/auto/repc/signature/differentGlobalEnum/CMakeLists.txt b/tests/auto/repc/signature/differentGlobalEnum/CMakeLists.txt
index 39dd761..5865e9b 100644
--- a/tests/auto/repc/signature/differentGlobalEnum/CMakeLists.txt
+++ b/tests/auto/repc/signature/differentGlobalEnum/CMakeLists.txt
@@ -13,6 +13,6 @@ qt_internal_add_executable(differentGlobalEnum
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(differentGlobalEnum
+qt6_add_repc_replicas(differentGlobalEnum
mismatch.rep
)
diff --git a/tests/auto/repc/signature/differentPropertyCount/CMakeLists.txt b/tests/auto/repc/signature/differentPropertyCount/CMakeLists.txt
index d96520f..c413ce0 100644
--- a/tests/auto/repc/signature/differentPropertyCount/CMakeLists.txt
+++ b/tests/auto/repc/signature/differentPropertyCount/CMakeLists.txt
@@ -13,6 +13,6 @@ qt_internal_add_executable(differentPropertyCount
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(differentPropertyCount
+qt6_add_repc_replicas(differentPropertyCount
mismatch.rep
)
diff --git a/tests/auto/repc/signature/differentPropertyType/CMakeLists.txt b/tests/auto/repc/signature/differentPropertyType/CMakeLists.txt
index ec72326..10c0fdd 100644
--- a/tests/auto/repc/signature/differentPropertyType/CMakeLists.txt
+++ b/tests/auto/repc/signature/differentPropertyType/CMakeLists.txt
@@ -13,6 +13,6 @@ qt_internal_add_executable(differentPropertyType
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(differentPropertyType
+qt6_add_repc_replicas(differentPropertyType
mismatch.rep
)
diff --git a/tests/auto/repc/signature/differentSignalCount/CMakeLists.txt b/tests/auto/repc/signature/differentSignalCount/CMakeLists.txt
index 0a7ae80..22e3a15 100644
--- a/tests/auto/repc/signature/differentSignalCount/CMakeLists.txt
+++ b/tests/auto/repc/signature/differentSignalCount/CMakeLists.txt
@@ -13,6 +13,6 @@ qt_internal_add_executable(differentSignalCount
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(differentSignalCount
+qt6_add_repc_replicas(differentSignalCount
mismatch.rep
)
diff --git a/tests/auto/repc/signature/differentSignalParamCount/CMakeLists.txt b/tests/auto/repc/signature/differentSignalParamCount/CMakeLists.txt
index 71f6c49..e3617c4 100644
--- a/tests/auto/repc/signature/differentSignalParamCount/CMakeLists.txt
+++ b/tests/auto/repc/signature/differentSignalParamCount/CMakeLists.txt
@@ -13,6 +13,6 @@ qt_internal_add_executable(differentSignalParamCount
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(differentSignalParamCount
+qt6_add_repc_replicas(differentSignalParamCount
mismatch.rep
)
diff --git a/tests/auto/repc/signature/differentSignalParamType/CMakeLists.txt b/tests/auto/repc/signature/differentSignalParamType/CMakeLists.txt
index 1959fbc..1a8fcb0 100644
--- a/tests/auto/repc/signature/differentSignalParamType/CMakeLists.txt
+++ b/tests/auto/repc/signature/differentSignalParamType/CMakeLists.txt
@@ -13,6 +13,6 @@ qt_internal_add_executable(differentSignalParamType
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(differentSignalParamType
+qt6_add_repc_replicas(differentSignalParamType
mismatch.rep
)
diff --git a/tests/auto/repc/signature/differentSlotCount/CMakeLists.txt b/tests/auto/repc/signature/differentSlotCount/CMakeLists.txt
index 38ec619..6cb2012 100644
--- a/tests/auto/repc/signature/differentSlotCount/CMakeLists.txt
+++ b/tests/auto/repc/signature/differentSlotCount/CMakeLists.txt
@@ -13,6 +13,6 @@ qt_internal_add_executable(differentSlotCount
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(differentSlotCount
+qt6_add_repc_replicas(differentSlotCount
mismatch.rep
)
diff --git a/tests/auto/repc/signature/differentSlotParamCount/CMakeLists.txt b/tests/auto/repc/signature/differentSlotParamCount/CMakeLists.txt
index 11646c3..e7f2adf 100644
--- a/tests/auto/repc/signature/differentSlotParamCount/CMakeLists.txt
+++ b/tests/auto/repc/signature/differentSlotParamCount/CMakeLists.txt
@@ -13,6 +13,6 @@ qt_internal_add_executable(differentSlotParamCount
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(differentSlotParamCount
+qt6_add_repc_replicas(differentSlotParamCount
mismatch.rep
)
diff --git a/tests/auto/repc/signature/differentSlotParamType/CMakeLists.txt b/tests/auto/repc/signature/differentSlotParamType/CMakeLists.txt
index dcc82a5..dd2ffde 100644
--- a/tests/auto/repc/signature/differentSlotParamType/CMakeLists.txt
+++ b/tests/auto/repc/signature/differentSlotParamType/CMakeLists.txt
@@ -13,6 +13,6 @@ qt_internal_add_executable(differentSlotParamType
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(differentSlotParamType
+qt6_add_repc_replicas(differentSlotParamType
mismatch.rep
)
diff --git a/tests/auto/repc/signature/differentSlotType/CMakeLists.txt b/tests/auto/repc/signature/differentSlotType/CMakeLists.txt
index 0f358a1..471baa6 100644
--- a/tests/auto/repc/signature/differentSlotType/CMakeLists.txt
+++ b/tests/auto/repc/signature/differentSlotType/CMakeLists.txt
@@ -13,6 +13,6 @@ qt_internal_add_executable(differentSlotType
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(differentSlotType
+qt6_add_repc_replicas(differentSlotType
mismatch.rep
)
diff --git a/tests/auto/repc/signature/matchAndQuit/CMakeLists.txt b/tests/auto/repc/signature/matchAndQuit/CMakeLists.txt
index 1c0f140..ab1ffa5 100644
--- a/tests/auto/repc/signature/matchAndQuit/CMakeLists.txt
+++ b/tests/auto/repc/signature/matchAndQuit/CMakeLists.txt
@@ -13,7 +13,7 @@ qt_internal_add_executable(matchAndQuit
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(matchAndQuit
+qt6_add_repc_replicas(matchAndQuit
../server.rep
)
diff --git a/tests/auto/repc/signature/scrambledProperties/CMakeLists.txt b/tests/auto/repc/signature/scrambledProperties/CMakeLists.txt
index e5ddee2..ea08128 100644
--- a/tests/auto/repc/signature/scrambledProperties/CMakeLists.txt
+++ b/tests/auto/repc/signature/scrambledProperties/CMakeLists.txt
@@ -13,6 +13,6 @@ qt_internal_add_executable(scrambledProperties
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(scrambledProperties
+qt6_add_repc_replicas(scrambledProperties
mismatch.rep
)
diff --git a/tests/auto/repc/signature/scrambledSignals/CMakeLists.txt b/tests/auto/repc/signature/scrambledSignals/CMakeLists.txt
index 4580682..240ac5a 100644
--- a/tests/auto/repc/signature/scrambledSignals/CMakeLists.txt
+++ b/tests/auto/repc/signature/scrambledSignals/CMakeLists.txt
@@ -13,6 +13,6 @@ qt_internal_add_executable(scrambledSignals
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(scrambledSignals
+qt6_add_repc_replicas(scrambledSignals
mismatch.rep
)
diff --git a/tests/auto/repc/signature/scrambledSlots/CMakeLists.txt b/tests/auto/repc/signature/scrambledSlots/CMakeLists.txt
index 869e03a..32ef1e0 100644
--- a/tests/auto/repc/signature/scrambledSlots/CMakeLists.txt
+++ b/tests/auto/repc/signature/scrambledSlots/CMakeLists.txt
@@ -13,6 +13,6 @@ qt_internal_add_executable(scrambledSlots
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(scrambledSlots
+qt6_add_repc_replicas(scrambledSlots
mismatch.rep
)
diff --git a/tests/auto/repc/signature/signatureServer/CMakeLists.txt b/tests/auto/repc/signature/signatureServer/CMakeLists.txt
index b63d778..c23a308 100644
--- a/tests/auto/repc/signature/signatureServer/CMakeLists.txt
+++ b/tests/auto/repc/signature/signatureServer/CMakeLists.txt
@@ -14,7 +14,7 @@ qt_internal_add_executable(signatureServer
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_source(signatureServer
+qt6_add_repc_sources(signatureServer
../server.rep
)
diff --git a/tests/auto/repc/signature/state/CMakeLists.txt b/tests/auto/repc/signature/state/CMakeLists.txt
index 070faf7..fb31d88 100644
--- a/tests/auto/repc/signature/state/CMakeLists.txt
+++ b/tests/auto/repc/signature/state/CMakeLists.txt
@@ -13,7 +13,7 @@ qt_internal_add_executable(state
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(state
+qt6_add_repc_replicas(state
mismatch.rep
)
diff --git a/tests/auto/restart/client/CMakeLists.txt b/tests/auto/restart/client/CMakeLists.txt
index 5e74e9d..ff4f90b 100644
--- a/tests/auto/restart/client/CMakeLists.txt
+++ b/tests/auto/restart/client/CMakeLists.txt
@@ -13,7 +13,7 @@ qt_internal_add_executable(restart_client
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_replica(restart_client
+qt6_add_repc_replicas(restart_client
../subclass.rep
)
diff --git a/tests/auto/restart/server/CMakeLists.txt b/tests/auto/restart/server/CMakeLists.txt
index f27d289..9a7f9fb 100644
--- a/tests/auto/restart/server/CMakeLists.txt
+++ b/tests/auto/restart/server/CMakeLists.txt
@@ -14,7 +14,7 @@ qt_internal_add_executable(restart_server
Qt::RemoteObjects
Qt::Test
)
-qt6_add_repc_source(restart_server
+qt6_add_repc_sources(restart_server
../subclass.rep
)