mirror of
https://github.com/reactos/CMake.git
synced 2024-12-25 21:15:37 +00:00
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'.
16 lines
245 B
C
16 lines
245 B
C
|
|
#ifndef TESTSHAREDLIBDEPENDS_H
|
|
#define TESTSHAREDLIBDEPENDS_H
|
|
|
|
#include "testsharedlibdepends_export.h"
|
|
|
|
#include "testSharedLibRequired.h"
|
|
#include "renamed.h"
|
|
|
|
struct TESTSHAREDLIBDEPENDS_EXPORT TestSharedLibDepends
|
|
{
|
|
int foo();
|
|
};
|
|
|
|
#endif
|