CMake/Tests/IncludeDirectories/SystemIncludeDirectories/upstream.h
Stephen Kelly 9cf3547e1c Add the INTERFACE_SYSTEM_INCLUDE_DIRECTORIES target property.
Unlike other target properties, this does not have a corresponding
non-INTERFACE variant.

This allows propagation of system attribute on include directories
from link dependents.
2013-07-16 13:44:57 -04:00

13 lines
131 B
C

#ifndef UPSTREAM_H
#define UPSTREAM_H
#include "systemlib.h"
#ifdef _WIN32
__declspec(dllexport)
#endif
int upstream();
#endif