You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
430 B
21 lines
430 B
|
|
#include "testLibIncludeRequired1.h"
|
|
#include "testLibIncludeRequired2.h"
|
|
#include "testLibIncludeRequired4.h"
|
|
|
|
#ifndef testLibRequired_IFACE_DEFINE
|
|
#error Expected testLibRequired_IFACE_DEFINE
|
|
#endif
|
|
|
|
#ifndef BuildOnly_DEFINE
|
|
#error Expected BuildOnly_DEFINE
|
|
#endif
|
|
|
|
#ifdef InstallOnly_DEFINE
|
|
#error Unexpected InstallOnly_DEFINE
|
|
#endif
|
|
|
|
extern int testLibRequired(void);
|
|
|
|
int testLibDepends(void) { return testLibRequired(); }
|