1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-08 14:13:57 +01:00

Fix Windows Release build

This commit is contained in:
Leland Lucius
2015-07-29 02:49:45 -05:00
parent 709c9e9153
commit e3f1c40c30
3 changed files with 15 additions and 16 deletions

View File

@@ -41,13 +41,6 @@
#if defined(__WXMSW__)
#include <wx/dynlib.h>
#include <wx/msw/seh.h>
#include <shlwapi.h>
#pragma comment(lib, "shlwapi")
#else
#include <dlfcn.h>
#endif
#include <wx/app.h>
#include <wx/defs.h>
#include <wx/buffer.h>
@@ -77,6 +70,12 @@
#include <wx/tokenzr.h>
#include <wx/utils.h>
#include <shlwapi.h>
#pragma comment(lib, "shlwapi")
#else
#include <dlfcn.h>
#endif
// TODO: Unfortunately we have some dependencies on Audacity provided
// dialogs, widgets and other stuff. This will need to be cleaned up.