cmake/Tests/CMakeCommands/target_sources/subdir/subdir_empty_2.cpp

22 lines
212 B

#ifdef IS_LIB
# ifdef _WIN32
__declspec(dllexport)
# endif
int internal_subdir_empty_2()
{
return 0;
}
#else
# ifdef _WIN32
__declspec(dllexport)
# endif
int subdir_empty_2()
{
return 0;
}
#endif