Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Tests/AliasTarget/bat.cpp
3148 views
1
2
#ifndef FOO_DEFINE
3
# error Expected FOO_DEFINE
4
#endif
5
6
#ifndef BAR_DEFINE
7
# error Expected Bar_DEFINE
8
#endif
9
10
#include "commandoutput.h"
11
12
#ifndef COMMANDOUTPUT_DEFINE
13
# error Expected COMMANDOUTPUT_DEFINE
14
#endif
15
16
#include "targetoutput.h"
17
18
#ifndef TARGETOUTPUT_DEFINE
19
# error Expected TARGETOUTPUT_DEFINE
20
#endif
21
22
#ifdef _WIN32
23
__declspec(dllexport)
24
#endif
25
int bar()
26
{
27
return 0;
28
}
29
30