mirror of
https://github.com/reactos/CMake.git
synced 2025-01-08 12:10:29 +00:00
9cf3547e1c
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.
13 lines
131 B
C
13 lines
131 B
C
|
|
#ifndef UPSTREAM_H
|
|
#define UPSTREAM_H
|
|
|
|
#include "systemlib.h"
|
|
|
|
#ifdef _WIN32
|
|
__declspec(dllexport)
|
|
#endif
|
|
int upstream();
|
|
|
|
#endif
|