1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-14 16:46:28 +01:00

Use the _DEBUG flag instead of __wxDEBUG__ for selecting the link libraries.

The include directories are determined by the configuration, which
is indicated by _DEBUG.  Using __wxDEBUG__ means that the
debug libraries might get used with the release includes (or the
reverse).
This commit is contained in:
Henric Jungheim
2016-05-12 08:05:44 -07:00
committed by James Crook
parent 3b39bdeca5
commit f1213e453e

View File

@@ -198,7 +198,7 @@ It handles initialization and termination by subclassing wxApp.
# pragma comment(lib, "libvamp")
# endif
# if defined(__WXDEBUG__)
# if defined(_DEBUG)
# define D "d"
# else
# define D ""