cmake: Fix dependency loops in custom targets (fixes #6632)
parent
73ddc01477
commit
4ec6918cd5
7 changed files with 60 additions and 8 deletions
@ -0,0 +1,7 @@ |
||||
#include "cpyTest.hpp" |
||||
#include "cpyTest2.hpp" |
||||
#include "cpyTest3.hpp" |
||||
|
||||
std::string getStrCpyTest() { |
||||
return CPY_TEST_STR_2 CPY_TEST_STR_3; |
||||
} |
@ -0,0 +1,5 @@ |
||||
#pragma once |
||||
|
||||
#include <string> |
||||
|
||||
std::string getStrCpyTest(); |
@ -0,0 +1,3 @@ |
||||
#pragma once |
||||
|
||||
#define CPY_TEST_STR_2 "Hello " |
@ -0,0 +1,3 @@ |
||||
#pragma once |
||||
|
||||
#define CPY_TEST_STR_3 "CopyFile" |
Loading…
Reference in new issue