Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Tests/CMakeCommands/target_sources/empty_1.cpp
3153 views
1
#ifdef IS_LIB
2
3
# ifdef _WIN32
4
__declspec(dllexport)
5
# endif
6
int internal_empty_1()
7
{
8
return 0;
9
}
10
11
#else
12
13
# ifdef _WIN32
14
__declspec(dllexport)
15
# endif
16
int empty_1()
17
{
18
return 0;
19
}
20
21
#endif
22
23