Add EXPORT_NAME property.

This allows for example, the buildsystem to use names like 'boost_any'
instead of the overly generic 'any', and still be able to generate
IMPORTED targets called 'boost::any'.
This commit is contained in:
Stephen Kelly
2013-05-17 10:12:02 +02:00
parent edeabd18e6
commit b5d6f5dd5b
14 changed files with 122 additions and 17 deletions

View File

@@ -4,5 +4,6 @@
int TestSharedLibDepends::foo()
{
TestSharedLibRequired req;
return req.foo();
Renamed renamed;
return req.foo() + renamed.foo();
}