OBJECT libraries: Properly recognize if sources depend on configuration

Fixes: #21198
This commit is contained in:
Deniz Bahadir
2020-09-22 14:04:26 +02:00
committed by Brad King
parent d575ecc9de
commit 2f76e7429b
5 changed files with 50 additions and 10 deletions
+8
View File
@@ -0,0 +1,8 @@
#if defined(_WIN32)
# define EXPORT __declspec(dllexport)
#else
# define EXPORT
#endif
EXPORT void shared()
{
}