b5d6f5dd5b
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'.
10 lines
156 B
C++
10 lines
156 B
C++
|
|
#include "testSharedLibDepends.h"
|
|
|
|
int TestSharedLibDepends::foo()
|
|
{
|
|
TestSharedLibRequired req;
|
|
Renamed renamed;
|
|
return req.foo() + renamed.foo();
|
|
}
|