From aea18daaab864499576da29a60f82c6d579cc851 Mon Sep 17 00:00:00 2001 From: MouriNaruto Date: Tue, 23 May 2023 17:33:45 +0800 Subject: [PATCH] Rename LVGL.Simulator project name to LvglWindowsSimulator for fixing the issue #42. --- LVGL.sln | 2 +- .../Program.cs | 10 +++++----- .../LVGL.ico | Bin .../LvglWindowsSimulator.cpp | 4 ++-- .../LvglWindowsSimulator.manifest | 0 .../LvglWindowsSimulator.rc | Bin .../LvglWindowsSimulator.vcxproj | 8 ++++---- .../LvglWindowsSimulator.vcxproj.filters | 6 +++--- .../LvglWindowsSimulatorBackup.cpp | 4 ++-- .../Mile.Project.Properties.h | Bin 2020 -> 1940 bytes .../Mile.Project.Cpp.props | 0 .../Mile.Project.Cpp.targets | 0 .../Mile.Project.Manifest.rc | Bin .../Mile.Project.Platform.ARM.props | 0 .../Mile.Project.Platform.ARM64.props | 0 .../Mile.Project.Platform.Win32.props | 0 .../Mile.Project.Platform.x64.props | 0 .../Mile.Project.Version.h | 0 .../Mile.Project.Version.rc | Bin .../freetype.props | 2 +- .../lv_conf.h | 0 .../resource.h | 2 +- .../win32drv.c | 0 .../win32drv.h | 0 README.md | 6 +++--- 25 files changed, 22 insertions(+), 22 deletions(-) rename {LVGL.Simulator => LvglWindowsSimulator}/LVGL.ico (100%) rename LVGL.Simulator/LVGL.Simulator.cpp => LvglWindowsSimulator/LvglWindowsSimulator.cpp (93%) rename LVGL.Simulator/LVGL.Simulator.manifest => LvglWindowsSimulator/LvglWindowsSimulator.manifest (100%) rename LVGL.Simulator/LVGL.Simulator.rc => LvglWindowsSimulator/LvglWindowsSimulator.rc (100%) rename LVGL.Simulator/LVGL.Simulator.vcxproj => LvglWindowsSimulator/LvglWindowsSimulator.vcxproj (99%) rename LVGL.Simulator/LVGL.Simulator.vcxproj.filters => LvglWindowsSimulator/LvglWindowsSimulator.vcxproj.filters (99%) rename LVGL.Simulator/LVGL.Simulator.Backup.cpp => LvglWindowsSimulator/LvglWindowsSimulatorBackup.cpp (99%) rename {LVGL.Simulator => LvglWindowsSimulator}/Mile.Project.Properties.h (82%) rename {LVGL.Simulator => LvglWindowsSimulator}/Mile.Project.Windows.Legacy/Mile.Project.Cpp.props (100%) rename {LVGL.Simulator => LvglWindowsSimulator}/Mile.Project.Windows.Legacy/Mile.Project.Cpp.targets (100%) rename {LVGL.Simulator => LvglWindowsSimulator}/Mile.Project.Windows.Legacy/Mile.Project.Manifest.rc (100%) rename {LVGL.Simulator => LvglWindowsSimulator}/Mile.Project.Windows.Legacy/Mile.Project.Platform.ARM.props (100%) rename {LVGL.Simulator => LvglWindowsSimulator}/Mile.Project.Windows.Legacy/Mile.Project.Platform.ARM64.props (100%) rename {LVGL.Simulator => LvglWindowsSimulator}/Mile.Project.Windows.Legacy/Mile.Project.Platform.Win32.props (100%) rename {LVGL.Simulator => LvglWindowsSimulator}/Mile.Project.Windows.Legacy/Mile.Project.Platform.x64.props (100%) rename {LVGL.Simulator => LvglWindowsSimulator}/Mile.Project.Windows.Legacy/Mile.Project.Version.h (100%) rename {LVGL.Simulator => LvglWindowsSimulator}/Mile.Project.Windows.Legacy/Mile.Project.Version.rc (100%) rename {LVGL.Simulator => LvglWindowsSimulator}/freetype.props (99%) rename {LVGL.Simulator => LvglWindowsSimulator}/lv_conf.h (100%) rename {LVGL.Simulator => LvglWindowsSimulator}/resource.h (91%) rename {LVGL.Simulator => LvglWindowsSimulator}/win32drv.c (100%) rename {LVGL.Simulator => LvglWindowsSimulator}/win32drv.h (100%) diff --git a/LVGL.sln b/LVGL.sln index 9e07ea21..f45e30c0 100644 --- a/LVGL.sln +++ b/LVGL.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.30907.101 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LVGL.Simulator", "LVGL.Simulator\LVGL.Simulator.vcxproj", "{3CA6E070-4AC1-475E-BB17-CF29AE4806DF}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LvglWindowsSimulator", "LvglWindowsSimulator\LvglWindowsSimulator.vcxproj", "{3CA6E070-4AC1-475E-BB17-CF29AE4806DF}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/LvglMaintainerTools/LvglSubmoduleProjectFileGenerator/Program.cs b/LvglMaintainerTools/LvglSubmoduleProjectFileGenerator/Program.cs index 0a112354..f2caa13a 100644 --- a/LvglMaintainerTools/LvglSubmoduleProjectFileGenerator/Program.cs +++ b/LvglMaintainerTools/LvglSubmoduleProjectFileGenerator/Program.cs @@ -115,7 +115,7 @@ static void Main(string[] args) List<(string, string)> NewHeaderNames = new List<(string, string)>(); List<(string, string)> NewSourceNames = new List<(string, string)>(); List<(string, string)> NewOtherNames = new List<(string, string)>(); - + foreach (var FilterName in FilterNames) { NewFilterNames.Add( @@ -159,8 +159,8 @@ static void Main(string[] args) ProjectRootElement ProjectRoot = ProjectRootElement.Open( string.Format( - @"{0}\LVGL.Simulator.vcxproj", - Path.GetFullPath(Root + @"\LVGL.Simulator\"))); + @"{0}\LvglWindowsSimulator.vcxproj", + Path.GetFullPath(Root + @"\LvglWindowsSimulator\"))); foreach (ProjectItemElement Item in ProjectRoot.Items) { @@ -173,8 +173,8 @@ static void Main(string[] args) ProjectRootElement FiltersRoot = ProjectRootElement.Open( string.Format( - @"{0}\LVGL.Simulator.vcxproj.filters", - Path.GetFullPath(Root + @"\LVGL.Simulator\"))); + @"{0}\LvglWindowsSimulator.vcxproj.filters", + Path.GetFullPath(Root + @"\LvglWindowsSimulator\"))); foreach (ProjectItemElement Item in FiltersRoot.Items) { diff --git a/LVGL.Simulator/LVGL.ico b/LvglWindowsSimulator/LVGL.ico similarity index 100% rename from LVGL.Simulator/LVGL.ico rename to LvglWindowsSimulator/LVGL.ico diff --git a/LVGL.Simulator/LVGL.Simulator.cpp b/LvglWindowsSimulator/LvglWindowsSimulator.cpp similarity index 93% rename from LVGL.Simulator/LVGL.Simulator.cpp rename to LvglWindowsSimulator/LvglWindowsSimulator.cpp index 0c5b7428..d7b7c085 100644 --- a/LVGL.Simulator/LVGL.Simulator.cpp +++ b/LvglWindowsSimulator/LvglWindowsSimulator.cpp @@ -1,6 +1,6 @@ /* - * PROJECT: LVGL PC Simulator using Visual Studio - * FILE: LVGL.Simulator.cpp + * PROJECT: LVGL Windows Simulator + * FILE: LvglWindowsSimulator.cpp * PURPOSE: Implementation for LVGL ported to Windows Desktop * * LICENSE: The MIT License diff --git a/LVGL.Simulator/LVGL.Simulator.manifest b/LvglWindowsSimulator/LvglWindowsSimulator.manifest similarity index 100% rename from LVGL.Simulator/LVGL.Simulator.manifest rename to LvglWindowsSimulator/LvglWindowsSimulator.manifest diff --git a/LVGL.Simulator/LVGL.Simulator.rc b/LvglWindowsSimulator/LvglWindowsSimulator.rc similarity index 100% rename from LVGL.Simulator/LVGL.Simulator.rc rename to LvglWindowsSimulator/LvglWindowsSimulator.rc diff --git a/LVGL.Simulator/LVGL.Simulator.vcxproj b/LvglWindowsSimulator/LvglWindowsSimulator.vcxproj similarity index 99% rename from LVGL.Simulator/LVGL.Simulator.vcxproj rename to LvglWindowsSimulator/LvglWindowsSimulator.vcxproj index 629957d2..9d3b3afd 100644 --- a/LVGL.Simulator/LVGL.Simulator.vcxproj +++ b/LvglWindowsSimulator/LvglWindowsSimulator.vcxproj @@ -7,7 +7,7 @@ {3CA6E070-4AC1-475E-BB17-CF29AE4806DF} LVGL ConsoleApplication - LVGL.Simulator.manifest + LvglWindowsSimulator.manifest true @@ -258,7 +258,7 @@ - + @@ -720,11 +720,11 @@ - + - + diff --git a/LVGL.Simulator/LVGL.Simulator.vcxproj.filters b/LvglWindowsSimulator/LvglWindowsSimulator.vcxproj.filters similarity index 99% rename from LVGL.Simulator/LVGL.Simulator.vcxproj.filters rename to LvglWindowsSimulator/LvglWindowsSimulator.vcxproj.filters index bc55a7a9..2387fd4c 100644 --- a/LVGL.Simulator/LVGL.Simulator.vcxproj.filters +++ b/LvglWindowsSimulator/LvglWindowsSimulator.vcxproj.filters @@ -683,7 +683,7 @@ - + @@ -2055,11 +2055,11 @@ lvgl\src\widgets\win - + - + diff --git a/LVGL.Simulator/LVGL.Simulator.Backup.cpp b/LvglWindowsSimulator/LvglWindowsSimulatorBackup.cpp similarity index 99% rename from LVGL.Simulator/LVGL.Simulator.Backup.cpp rename to LvglWindowsSimulator/LvglWindowsSimulatorBackup.cpp index 84253ea8..d548e941 100644 --- a/LVGL.Simulator/LVGL.Simulator.Backup.cpp +++ b/LvglWindowsSimulator/LvglWindowsSimulatorBackup.cpp @@ -1,6 +1,6 @@ /* - * PROJECT: LVGL PC Simulator using Visual Studio - * FILE: LVGL.Simulator.cpp + * PROJECT: LVGL Windows Simulator + * FILE: LvglWindowsSimulator.cpp * PURPOSE: Implementation for LVGL ported to Windows Desktop * * LICENSE: The MIT License diff --git a/LVGL.Simulator/Mile.Project.Properties.h b/LvglWindowsSimulator/Mile.Project.Properties.h similarity index 82% rename from LVGL.Simulator/Mile.Project.Properties.h rename to LvglWindowsSimulator/Mile.Project.Properties.h index 246210d191d550ac64550b347cfc19ea571ff994..58fa0e5abfe9d403c57f4a274075b5a17a53c014 100644 GIT binary patch delta 103 zcmaFDKZSoo7t7=-cAm*kn6xIpV6ov1XUJs8V@P4hXDDYVo~+0!I{6x_!Q?(xJ>fEj dbcP%TRQbcKm8@Y5?hHPYGub9%Rl&^u5C9?P9Bu#r delta 201 zcmbQj|Ac=-7mIEtLkSS(Fr+e+F(@#&GZZl-G88amFk~_$GZX_we1NPZuxJrO<>ZB| zhLaDl*jNSwMROTSf%+1Gy7PhZ3JhsbIvgmM$B+W#m4i)i0h(RRkPTK>05-voRgXOk YXqOLz-sFDPN)p|`%QhLVdo$ZZ0PDIf4FCWD diff --git a/LVGL.Simulator/Mile.Project.Windows.Legacy/Mile.Project.Cpp.props b/LvglWindowsSimulator/Mile.Project.Windows.Legacy/Mile.Project.Cpp.props similarity index 100% rename from LVGL.Simulator/Mile.Project.Windows.Legacy/Mile.Project.Cpp.props rename to LvglWindowsSimulator/Mile.Project.Windows.Legacy/Mile.Project.Cpp.props diff --git a/LVGL.Simulator/Mile.Project.Windows.Legacy/Mile.Project.Cpp.targets b/LvglWindowsSimulator/Mile.Project.Windows.Legacy/Mile.Project.Cpp.targets similarity index 100% rename from LVGL.Simulator/Mile.Project.Windows.Legacy/Mile.Project.Cpp.targets rename to LvglWindowsSimulator/Mile.Project.Windows.Legacy/Mile.Project.Cpp.targets diff --git a/LVGL.Simulator/Mile.Project.Windows.Legacy/Mile.Project.Manifest.rc b/LvglWindowsSimulator/Mile.Project.Windows.Legacy/Mile.Project.Manifest.rc similarity index 100% rename from LVGL.Simulator/Mile.Project.Windows.Legacy/Mile.Project.Manifest.rc rename to LvglWindowsSimulator/Mile.Project.Windows.Legacy/Mile.Project.Manifest.rc diff --git a/LVGL.Simulator/Mile.Project.Windows.Legacy/Mile.Project.Platform.ARM.props b/LvglWindowsSimulator/Mile.Project.Windows.Legacy/Mile.Project.Platform.ARM.props similarity index 100% rename from LVGL.Simulator/Mile.Project.Windows.Legacy/Mile.Project.Platform.ARM.props rename to LvglWindowsSimulator/Mile.Project.Windows.Legacy/Mile.Project.Platform.ARM.props diff --git a/LVGL.Simulator/Mile.Project.Windows.Legacy/Mile.Project.Platform.ARM64.props b/LvglWindowsSimulator/Mile.Project.Windows.Legacy/Mile.Project.Platform.ARM64.props similarity index 100% rename from LVGL.Simulator/Mile.Project.Windows.Legacy/Mile.Project.Platform.ARM64.props rename to LvglWindowsSimulator/Mile.Project.Windows.Legacy/Mile.Project.Platform.ARM64.props diff --git a/LVGL.Simulator/Mile.Project.Windows.Legacy/Mile.Project.Platform.Win32.props b/LvglWindowsSimulator/Mile.Project.Windows.Legacy/Mile.Project.Platform.Win32.props similarity index 100% rename from LVGL.Simulator/Mile.Project.Windows.Legacy/Mile.Project.Platform.Win32.props rename to LvglWindowsSimulator/Mile.Project.Windows.Legacy/Mile.Project.Platform.Win32.props diff --git a/LVGL.Simulator/Mile.Project.Windows.Legacy/Mile.Project.Platform.x64.props b/LvglWindowsSimulator/Mile.Project.Windows.Legacy/Mile.Project.Platform.x64.props similarity index 100% rename from LVGL.Simulator/Mile.Project.Windows.Legacy/Mile.Project.Platform.x64.props rename to LvglWindowsSimulator/Mile.Project.Windows.Legacy/Mile.Project.Platform.x64.props diff --git a/LVGL.Simulator/Mile.Project.Windows.Legacy/Mile.Project.Version.h b/LvglWindowsSimulator/Mile.Project.Windows.Legacy/Mile.Project.Version.h similarity index 100% rename from LVGL.Simulator/Mile.Project.Windows.Legacy/Mile.Project.Version.h rename to LvglWindowsSimulator/Mile.Project.Windows.Legacy/Mile.Project.Version.h diff --git a/LVGL.Simulator/Mile.Project.Windows.Legacy/Mile.Project.Version.rc b/LvglWindowsSimulator/Mile.Project.Windows.Legacy/Mile.Project.Version.rc similarity index 100% rename from LVGL.Simulator/Mile.Project.Windows.Legacy/Mile.Project.Version.rc rename to LvglWindowsSimulator/Mile.Project.Windows.Legacy/Mile.Project.Version.rc diff --git a/LVGL.Simulator/freetype.props b/LvglWindowsSimulator/freetype.props similarity index 99% rename from LVGL.Simulator/freetype.props rename to LvglWindowsSimulator/freetype.props index b9dca5dd..3a5e7f7f 100644 --- a/LVGL.Simulator/freetype.props +++ b/LvglWindowsSimulator/freetype.props @@ -1,6 +1,6 @@