diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-02-23 12:49:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-23 12:49:50 +0200 |
| commit | bacf063aaeb4f739c93b056a9a6c8ae4c731cd95 (patch) | |
| tree | 7c62d7dbf33591cec0ba13e22edfce54397dfefb /test cases/cmake/8 custom command/subprojects/cmMod/cpyTest.cpp | |
| parent | 00c9a7a43060c215ebd3fe6e15233cd8ebc90bc7 (diff) | |
| parent | 113ec96626fe7cd2edc0bc4815ae2fc21cfb0546 (diff) | |
| download | meson-bacf063aaeb4f739c93b056a9a6c8ae4c731cd95.tar.gz | |
Merge pull request #6635 from mensinda/cmOTMFix
cmake: Fix dependency loops in custom targets (fixes #6632)
Diffstat (limited to 'test cases/cmake/8 custom command/subprojects/cmMod/cpyTest.cpp')
| -rw-r--r-- | test cases/cmake/8 custom command/subprojects/cmMod/cpyTest.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test cases/cmake/8 custom command/subprojects/cmMod/cpyTest.cpp b/test cases/cmake/8 custom command/subprojects/cmMod/cpyTest.cpp new file mode 100644 index 000000000..f76225152 --- /dev/null +++ b/test cases/cmake/8 custom command/subprojects/cmMod/cpyTest.cpp @@ -0,0 +1,8 @@ +#include "cpyTest.hpp" +#include "cpyTest2.hpp" +#include "cpyTest3.hpp" +#include "ccppyyTTeesstt/cpyTest4.hpp" + +std::string getStrCpyTest() { + return CPY_TEST_STR_2 CPY_TEST_STR_3 CPY_TEST_STR_4; +} |
