summaryrefslogtreecommitdiff
path: root/test cases/cmake/8 custom command/subprojects/cmMod/cmMod.cpp
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2020-02-16 14:45:29 +0100
committerDaniel Mensinger <daniel@mensinger-ka.de>2020-02-19 11:52:22 +0100
commit4ec6918cd59d0fbf6cd3e93c7f5d86d43a4f44e8 (patch)
treee606a70c11c92fd3c11d22d8d8da61bbdc9e1ff9 /test cases/cmake/8 custom command/subprojects/cmMod/cmMod.cpp
parent73ddc014774102b378bb89bf9d4801d7b231b745 (diff)
downloadmeson-4ec6918cd59d0fbf6cd3e93c7f5d86d43a4f44e8.tar.gz
cmake: Fix dependency loops in custom targets (fixes #6632)
Diffstat (limited to 'test cases/cmake/8 custom command/subprojects/cmMod/cmMod.cpp')
-rw-r--r--test cases/cmake/8 custom command/subprojects/cmMod/cmMod.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/test cases/cmake/8 custom command/subprojects/cmMod/cmMod.cpp b/test cases/cmake/8 custom command/subprojects/cmMod/cmMod.cpp
index e6236e474..e4d531829 100644
--- a/test cases/cmake/8 custom command/subprojects/cmMod/cmMod.cpp
+++ b/test cases/cmake/8 custom command/subprojects/cmMod/cmMod.cpp
@@ -2,6 +2,7 @@
#include "genTest.hpp"
#include "cpyBase.hpp"
#include "cpyNext.hpp"
+#include "cpyTest.hpp"
#include "cmModLib.hpp"
#ifndef FOO
@@ -19,5 +20,5 @@ string cmModClass::getStr() const {
}
string cmModClass::getOther() const {
- return "Srings:\n - " + getStrCpy() + "\n - " + getStrNext();
+ return "Srings:\n - " + getStrCpy() + "\n - " + getStrNext() + "\n - " + getStrCpyTest();
}