CMake/Tests/ExportImport/Import/A/renamed_test.cpp
Stephen Kelly b5d6f5dd5b 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'.
2013-05-18 10:00:48 +02:00

9 lines
85 B
C++

#include "renamed.h"
int main(int, char **)
{
Renamed ren;
return ren.foo();
}