1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-19 17:11:12 +02:00

Pull in the right library in wx3 builds

This commit is contained in:
Leland Lucius
2015-04-18 23:39:49 -05:00
parent 6609fbbfdd
commit 7db0eebd65

View File

@@ -189,14 +189,27 @@ It handles initialization and termination by subclassing wxApp.
# if defined(USE_VAMP)
# pragma comment(lib, "libvamp")
# endif
# if defined(__WXDEBUG__)
# define D "d"
# else
# define D ""
# endif
# if wxCHECK_VERSION(3, 1, 0)
# define V "31"
# elif wxCHECK_VERSION(3, 0, 0)
# define V "30"
# else
# define V "28"
# endif
# if defined(EXPERIMENTAL_CRASH_REPORT)
# if defined(__WXDEBUG__)
# pragma comment(lib, "wxmsw28ud_qa")
# else
# pragma comment(lib, "wxmsw28u_qa")
# endif
# if defined(EXPERIMENTAL_CRASH_REPORT)
# pragma comment(lib, "wxmsw" V "u" D "_qa")
# endif
# undef V
# undef D
#endif //(__WXMSW__)
#include "../images/AudacityLogoWithName.xpm"