mirror of
https://github.com/reactos/CMake.git
synced 2024-12-18 17:16:58 +00:00
a97240b969
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.
5 lines
69 B
C++
5 lines
69 B
C++
#ifdef _WIN32
|
|
__declspec(dllexport)
|
|
#endif
|
|
int empty() { return 0; }
|