summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/Autogen_common/exe_relwithdebinfo.cpp
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2024-06-26 12:40:52 (GMT)
committerKitware Robot <kwrobot@kitware.com>2024-06-26 12:41:02 (GMT)
commit0ffdd6b50fb30e0e203dbfd278665f7cbde6d735 (patch)
treea0592317ef1bfa1ae799a3bd78f6856747db4414 /Tests/RunCMake/Autogen_common/exe_relwithdebinfo.cpp
parent1736e377404dcd3d111dbf0cf44d147c7886f94f (diff)
parent6ee5c431d5a7217b12268cc6ccc1ac62625abf4f (diff)
downloadCMake-0ffdd6b50fb30e0e203dbfd278665f7cbde6d735.zip
CMake-0ffdd6b50fb30e0e203dbfd278665f7cbde6d735.tar.gz
CMake-0ffdd6b50fb30e0e203dbfd278665f7cbde6d735.tar.bz2
Merge topic 'orkun_refactor_autogen_tests_21_06_2024'
6ee5c431d5 Autogen: Separate RunCMake.AutogenQtX tests Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Acked-by: alcroito <alexandru.croitor@qt.io> Merge-request: !9620
Diffstat (limited to 'Tests/RunCMake/Autogen_common/exe_relwithdebinfo.cpp')
-rw-r--r--Tests/RunCMake/Autogen_common/exe_relwithdebinfo.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/RunCMake/Autogen_common/exe_relwithdebinfo.cpp b/Tests/RunCMake/Autogen_common/exe_relwithdebinfo.cpp
new file mode 100644
index 0000000..aa6c558
--- /dev/null
+++ b/Tests/RunCMake/Autogen_common/exe_relwithdebinfo.cpp
@@ -0,0 +1,10 @@
+#include <fstream>
+#include <iostream>
+
+#include "exe_common.h"
+
+int main(int argc, char* argv[])
+{
+ std::cout << "running_exe_RelWithDebInfo\n";
+ return runRealExe(argc, argv);
+}