mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
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:
parent
b2d23cf949
commit
9c1274fd99
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,4 @@
|
||||
/Projects/CodeLite/OSX/SleepyHead.tags
|
||||
/Projects/CodeLite/OSX/Debug
|
||||
/Projects/CodeLite/OSX/SleepyHead.mk
|
||||
/Projects/CodeLite/OSX/SleepyHead_wsp.mk
|
@ -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>
|
||||
|
@ -35,8 +35,16 @@ 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);
|
||||
|
||||
|
@ -6,7 +6,6 @@
|
||||
#include "machine.h"
|
||||
#include "profiles.h"
|
||||
#include <algorithm>
|
||||
#include <initializer_list>
|
||||
|
||||
extern wxProgressDialog *loader_progress;
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user