Tests/IncludeDirectories: Avoid shared library with no symbols

The parent commit added a empty_entry_test shared library to the
IncludeDirectories test.  Some toolchains fail to create a shared
library with no user-defined symbols, so provide a dummy symbol.
This commit is contained in:
Brad King 2013-05-23 09:10:04 -04:00
parent 2f84dfec93
commit a97240b969
1 changed files with 4 additions and 1 deletions

View File

@ -1 +1,4 @@
// No content
#ifdef _WIN32
__declspec(dllexport)
#endif
int empty() { return 0; }