cmake/Tests/InterfaceLibrary/sharedlibtestexe.cpp
2018-08-09 18:06:22 +02:00

20 lines
325 B
C++

#ifndef SHAREDLIB_DEFINE
# error Expected SHAREDLIB_DEFINE
#endif
#ifndef SHAREDDEPENDLIB_DEFINE
# error Expected SHAREDDEPENDLIB_DEFINE
#endif
#include "shareddependlib.h"
#include "sharedlib.h"
int main(int, char**)
{
SharedLibObject sl;
SharedDependLibObject sdl = sl.object();
return sdl.foo() + sl.foo();
}