mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
Make the CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE variable affect INTERFACE_LIBRARY targets.
22 lines
307 B
C++
22 lines
307 B
C++
|
|
#ifndef IFACE_DEFINE
|
|
#error Expected IFACE_DEFINE
|
|
#endif
|
|
|
|
#include "iface_header.h"
|
|
|
|
#ifndef IFACE_HEADER_SRCDIR
|
|
#error Expected IFACE_HEADER_SRCDIR
|
|
#endif
|
|
|
|
#include "iface_header_builddir.h"
|
|
|
|
#ifndef IFACE_HEADER_BUILDDIR
|
|
#error Expected IFACE_HEADER_BUILDDIR
|
|
#endif
|
|
|
|
int main(int,char**)
|
|
{
|
|
return 0;
|
|
}
|