diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2019-11-01 13:17:40 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2019-11-01 13:17:40 -0300 |
commit | 6ce2bdcf85dffee6b6ef7b95b888b8b96372a3d6 (patch) | |
tree | ee22fbae504a764af839edbd10a6e48f92b441ff | |
parent | 65c5187620aa1efde0104e70d02c67fc7b26cca1 (diff) | |
download | PSP.git-6ce2bdcf85dffee6b6ef7b95b888b8b96372a3d6.tar.gz PSP.git-6ce2bdcf85dffee6b6ef7b95b888b8b96372a3d6.tar.xz PSP.git-6ce2bdcf85dffee6b6ef7b95b888b8b96372a3d6.zip |
Minor changes to 32bit MSW version
-rw-r--r-- | Project/AboutForm.cpp | 4 | ||||
-rw-r--r-- | Project/Project.project | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Project/AboutForm.cpp b/Project/AboutForm.cpp index 6c56750..32bd7ad 100644 --- a/Project/AboutForm.cpp +++ b/Project/AboutForm.cpp @@ -21,8 +21,8 @@ AboutForm::AboutForm(wxWindow* parent) : AboutFormBase(parent) { Init(); } AboutForm::~AboutForm() {} void AboutForm::Init() { - // Set program version - m_staticTextVersion->SetLabel("Beta 2019w29a"); + // Set program version. Format: (Alpha/Beta/Release) (YEAR)w(WEEK)(a/b/c/...) + m_staticTextVersion->SetLabel("Beta 2019w44a"); // Create developers table m_gridCredits->EnableGridLines(false); diff --git a/Project/Project.project b/Project/Project.project index b575519..82b109b 100644 --- a/Project/Project.project +++ b/Project/Project.project @@ -478,13 +478,13 @@ <SearchPaths/> </Completion> </Configuration> - <Configuration Name="Release_Windows_x32" CompilerType="MinGW ( TDM-GCC-481-32 )" DebuggerType="GNU gdb debugger" Type="Executable" BuildCmpWithGlobalSettings="append" BuildLnkWithGlobalSettings="append" BuildResWithGlobalSettings="append"> - <Compiler Options="-O2;-Wall;$(shell wx-config --cflags);-std=gnu++11" C_Options="-O2;-Wall" Assembler="" Required="yes" PreCompiledHeader="" PCHInCommandLine="no" PCHFlags="" PCHFlagsPolicy="0"> + <Configuration Name="Release_Windows_x32" CompilerType="MinGW 32bit ( MSYS2 64bit )" DebuggerType="GNU gdb debugger" Type="Executable" BuildCmpWithGlobalSettings="append" BuildLnkWithGlobalSettings="append" BuildResWithGlobalSettings="append"> + <Compiler Options="-O2;-std=gnu++17;-Wall;$(shell wx-config --cflags)" C_Options="-O2;-Wall" Assembler="" Required="yes" PreCompiledHeader="" PCHInCommandLine="no" PCHFlags="" PCHFlagsPolicy="0"> <IncludePath Value="."/> <Preprocessor Value="NDEBUG"/> <Preprocessor Value="UNICODE"/> </Compiler> - <Linker Options="$(shell wx-config --libs std,ribbon,aui,propgrid,richtext,gl);-mwindows" Required="yes"/> + <Linker Options="$(shell wx-config --libs std,adv,ribbon,aui,propgrid,richtext,stc,gl);-mwindows;-static" Required="yes"/> <ResourceCompiler Options="$(shell wx-config --rcflags)" Required="no"/> <General OutputFile="$(IntermediateDirectory)/pspufu" IntermediateDirectory="./Release_Windows_x32" Command="./pspufu" CommandArguments="" UseSeparateDebugArgs="no" DebugArguments="" WorkingDirectory="$(IntermediateDirectory)" PauseExecWhenProcTerminates="no" IsGUIProgram="yes" IsEnabled="yes"/> <BuildSystem Name="Default"/> |