CMake/Tests/ExportImport/Import/A/imp_lib1.c
Brad King e01cce2869 Allow add_dependencies() on imported targets (#10395)
Imported targets do not themselves build, but we can follow dependencies
through them to find real targets.  This allows imported targets to
depend on custom targets that provide the underlying files at build
time.
2010-11-19 17:19:21 -05:00

7 lines
67 B
C

#include "testLib2.h"
int imp_lib1(void)
{
return testLib2();
}