1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-01 08:29:27 +02:00

Fix Windows Build

This commit is contained in:
James Crook 2019-03-31 20:24:00 +01:00
parent 44d664c7bb
commit 2936459bca
3 changed files with 12 additions and 0 deletions

View File

@ -64,6 +64,10 @@ It handles initialization and termination by subclassing wxApp.
#include <sys/stat.h>
#endif
#if defined(__WXMSW__)
#include <wx/msw/registry.h> // for wxRegKey
#endif
#include "AudacityException.h"
#include "AudacityLogger.h"
#include "AboutDialog.h"

View File

@ -22,6 +22,10 @@ Describes shared object that is used to access FFmpeg libraries.
#include "Internat.h"
#if defined(__WXMSW__)
#include <wx/msw/registry.h> // for wxRegKey
#endif
class wxCheckBox;
// TODO: Determine whether the libav* headers come from the FFmpeg or libav

View File

@ -24,6 +24,10 @@
#include <wx/process.h>
#include <wx/sizer.h>
#include <wx/textctrl.h>
#if defined(__WXMSW__)
#include <wx/msw/registry.h> // for wxRegKey
#endif
#include "../FileNames.h"
#include "Export.h"