b655865bbf
Add a new signature to help populate INTERFACE_LINK_LIBRARIES and LINK_LIBRARIES cleanly in a single call. Add policy CMP0023 to control whether the keyword signatures can be mixed with uses of the plain signatures on the same target.
20 lines
265 B
C++
20 lines
265 B
C++
|
|
#include "depB.h"
|
|
#include "depC.h"
|
|
#include "depIfaceOnly.h"
|
|
|
|
#include "subdirlib.h"
|
|
|
|
int main(int, char **)
|
|
{
|
|
DepA a;
|
|
DepB b;
|
|
DepC c;
|
|
|
|
DepIfaceOnly iface_only;
|
|
|
|
SubDirLibObject sd;
|
|
|
|
return a.foo() + b.foo() + c.foo() + iface_only.foo() + sd.foo();
|
|
}
|