mirror of
https://github.com/reactos/CMake.git
synced 2025-02-18 02:28:05 +00:00
![Brad King](/assets/img/avatar_default.png)
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; }
|