Sign in
cmake
/
cmake
/
39e5a4da220c1ddcd73d74d26ed55a7418add215
/
.
/
Tests
/
Framework
/
foo.cxx
blob: a4d15f609f477a05ef9e085f21347564b1b15e1f [
file
] [
log
] [
blame
]
#include
<stdio.h>
#if defined(_WIN32) && defined(foo_EXPORTS)
# define CM_TEST_LIB_EXPORT __declspec(dllexport)
#else
# define CM_TEST_LIB_EXPORT
#endif
CM_TEST_LIB_EXPORT
void
foo
()
{
printf
(
"foo\n"
);
}