mirror of
https://github.com/Kitware/CMake.git
synced 2025-06-28 23:06:14 +08:00

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'.
9 lines
85 B
C++
9 lines
85 B
C++
|
|
#include "renamed.h"
|
|
|
|
int main(int, char **)
|
|
{
|
|
Renamed ren;
|
|
return ren.foo();
|
|
}
|