mirror of
https://github.com/reactos/CMake.git
synced 2024-11-27 21:41:03 +00:00
6fbe3ce4ef
These interface-related link-libraries properties are used to determine the value of the other INTERFACE properties, so we were getting infinite recursion and segfaults otherwise.
14 lines
125 B
C++
14 lines
125 B
C++
|
|
#ifndef IFACE2_H
|
|
#define IFACE2_H
|
|
|
|
#include "iface2_export.h"
|
|
|
|
class IFACE2_EXPORT Iface2
|
|
{
|
|
public:
|
|
int foo();
|
|
};
|
|
|
|
#endif
|