1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-19 20:34:22 +02:00

Rename libtomahawklib.* files to libtomahawk.*

Needed lots of fixes for exporting on windows because otherwise a
libtomahawk.dll.a was created for tomahawk.exe which conflicted with the
libtomahawk.dll.a that is created for libtomahawk.dll
This commit is contained in:
Dominik Schmidt
2013-05-08 11:35:27 +02:00
parent 32a03baaf3
commit fd3a6ad0ef
7 changed files with 25 additions and 25 deletions

View File

@@ -21,12 +21,16 @@
#include <QtCore/qglobal.h>
#ifndef PORTFWDDLLEXPORT
# if defined (PORTFWDDLLEXPORT_PRO)
# define PORTFWDDLLEXPORT Q_DECL_EXPORT
# if defined (PORTFWDDLLEXPORT_STATIC)
# define PORTFWDDLLEXPORT
# else
# define PORTFWDDLLEXPORT Q_DECL_IMPORT
# ifndef PORTFWDDLLEXPORT
# if defined (PORTFWDDLLEXPORT_PRO)
# define PORTFWDDLLEXPORT Q_DECL_EXPORT
# else
# define PORTFWDDLLEXPORT Q_DECL_IMPORT
# endif
# endif
# endif
#endif
#endif