Compiles on OSX Snow Leopard 10.6.7 with wxWidgets 2.8.12.

Operation is still buggy and needs work on OSX.
This commit is contained in:
Troy Schultz 2011-06-04 10:56:16 -04:00
parent b2d23cf949
commit 9c1274fd99
5 changed files with 20 additions and 9 deletions

5
.gitignore vendored
View File

@ -1 +1,4 @@
/Projects/CodeLite/OSX/SleepyHead.tags
/Projects/CodeLite/OSX/SleepyHead.tags
/Projects/CodeLite/OSX/Debug
/Projects/CodeLite/OSX/SleepyHead.mk
/Projects/CodeLite/OSX/SleepyHead_wsp.mk

View File

@ -48,6 +48,9 @@
<File Name="Info.plist"/>
<File Name="SleepyHead.icns"/>
</VirtualDirectory>
<VirtualDirectory Name="resources">
<File Name="../../../src/WxWizFrame.fbp"/>
</VirtualDirectory>
<Settings Type="Executable">
<GlobalSettings>
<Compiler Options="" C_Options="">
@ -61,6 +64,8 @@
<Configuration Name="Debug" CompilerType="gnu g++" DebuggerType="GNU gdb debugger" Type="Executable" BuildCmpWithGlobalSettings="append" BuildLnkWithGlobalSettings="append" BuildResWithGlobalSettings="append">
<Compiler Options="-g;$(shell wx-config --cxxflags --unicode=yes --debug=yes);-m32" C_Options="-g;$(shell wx-config --cxxflags --unicode=yes --debug=yes);-m32" Required="yes" PreCompiledHeader="">
<IncludePath Value="../../../src"/>
<IncludePath Value="../../../src/libs"/>
<IncludePath Value="../../../src/graphs/"/>
<Preprocessor Value="__WX__"/>
</Compiler>
<Linker Options="-mwindows;$(shell wx-config --debug=yes --libs --unicode=yes);-m32" Required="yes"/>
@ -131,7 +136,4 @@ $(IntermediateDirectory)/$(ProjectName).app/Contents/Resources/SleepyHead.icns:
</AdditionalRules>
</Configuration>
</Settings>
<VirtualDirectory Name="resources">
<File Name="../../../src/WxWizFrame.fbp"/>
</VirtualDirectory>
</CodeLite_Project>

View File

@ -34,9 +34,17 @@ IMPLEMENT_APP(SleepyHeadApp);
bool SleepyHeadApp::OnInit()
{
// Initialize the logger
wxLog *logger=new wxLogStream(&std::cout);
wxLog::SetActiveTarget(logger);
// wxLogStream requires wxWidgets to be built with wxUSE_STD_IOSTREAM which is not default
//wxLog *logger=new wxLogStream(&std::cout);
//wxLog::SetActiveTarget(logger);
// use STDERR for wxLogging for better portability for now
wxLogStderr(NULL);
wxLogDebug( wxVERSION_STRING );
wxLogDebug( wxT("Application Initialze...") );
// wxFileSystem::AddHandler(new wxMemoryFSHandler);

View File

@ -6,7 +6,6 @@
#include "machine.h"
#include "profiles.h"
#include <algorithm>
#include <initializer_list>
extern wxProgressDialog *loader_progress;

View File

@ -15,7 +15,6 @@ License: GPL
#include <wx/log.h>
#include <wx/progdlg.h>
#include <wx/msgdlg.h>
#include <initializer_list>
#include "prs1_loader.h"