mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-16 01:21:25 +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:
committed by
James Crook
parent
3b39bdeca5
commit
f1213e453e
@@ -198,7 +198,7 @@ It handles initialization and termination by subclassing wxApp.
|
|||||||
# pragma comment(lib, "libvamp")
|
# pragma comment(lib, "libvamp")
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
# if defined(__WXDEBUG__)
|
# if defined(_DEBUG)
|
||||||
# define D "d"
|
# define D "d"
|
||||||
# else
|
# else
|
||||||
# define D ""
|
# define D ""
|
||||||
|
|||||||
Reference in New Issue
Block a user