├── .editorconfig ├── .github ├── auto-comment.yml ├── stale.yml └── workflows │ └── CI.yml ├── .gitignore ├── .gitmodules ├── BuildAllTargets.cmd ├── BuildAllTargets.proj ├── Directory.Build.props ├── Documents ├── Arm32SupportRemovedNotice.md ├── DefaultLvglConfigurations.md └── HowToSynchronizeLvglRelatedSubmodules.md ├── LICENSE ├── LVGL.MaintainerTools.slnx ├── LVGL.slnx ├── Lvgl.Build.Tasks ├── Lvgl.Build.Tasks.csproj ├── MigrateLvglConfiguration.cs ├── StaticLibraryExportsDefinitionGenerator.cs └── Utilities.cs ├── LvglPlatform ├── Lvgl.Build.Tasks.dll ├── LvglWindowsIconResource │ ├── LvglWindowsIconResource.h │ ├── LvglWindowsIconResource.ico │ ├── LvglWindowsIconResource.props │ └── LvglWindowsIconResource.rc └── Mile.Project.Helpers.dll ├── LvglProjectFileUpdater ├── LvglProjectFileUpdater.csproj ├── LvglWindowsLibraryProjectUpdater.cs └── Program.cs ├── LvglWindows ├── LvglWindows.manifest ├── LvglWindows.vcxproj ├── LvglWindowsStatic.vcxproj ├── LvglWindowsStatic.vcxproj.filters └── lv_conf.h ├── LvglWindowsDesktopApplication ├── LvglWindowsDesktopApplication.cpp ├── LvglWindowsDesktopApplication.manifest ├── LvglWindowsDesktopApplication.vcxproj ├── LvglWindowsDesktopApplication.vcxproj.filters └── lv_conf.h ├── LvglWindowsSimulator ├── LvglWindowsSimulator.cpp ├── LvglWindowsSimulator.manifest ├── LvglWindowsSimulator.vcxproj ├── LvglWindowsSimulator.vcxproj.filters ├── freetype.props └── lv_conf.h ├── README.md ├── Screenshot.png └── manifest.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/auto-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/.github/auto-comment.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/.gitmodules -------------------------------------------------------------------------------- /BuildAllTargets.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/BuildAllTargets.cmd -------------------------------------------------------------------------------- /BuildAllTargets.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/BuildAllTargets.proj -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Documents/Arm32SupportRemovedNotice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/Documents/Arm32SupportRemovedNotice.md -------------------------------------------------------------------------------- /Documents/DefaultLvglConfigurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/Documents/DefaultLvglConfigurations.md -------------------------------------------------------------------------------- /Documents/HowToSynchronizeLvglRelatedSubmodules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/Documents/HowToSynchronizeLvglRelatedSubmodules.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LICENSE -------------------------------------------------------------------------------- /LVGL.MaintainerTools.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LVGL.MaintainerTools.slnx -------------------------------------------------------------------------------- /LVGL.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LVGL.slnx -------------------------------------------------------------------------------- /Lvgl.Build.Tasks/Lvgl.Build.Tasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/Lvgl.Build.Tasks/Lvgl.Build.Tasks.csproj -------------------------------------------------------------------------------- /Lvgl.Build.Tasks/MigrateLvglConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/Lvgl.Build.Tasks/MigrateLvglConfiguration.cs -------------------------------------------------------------------------------- /Lvgl.Build.Tasks/StaticLibraryExportsDefinitionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/Lvgl.Build.Tasks/StaticLibraryExportsDefinitionGenerator.cs -------------------------------------------------------------------------------- /Lvgl.Build.Tasks/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/Lvgl.Build.Tasks/Utilities.cs -------------------------------------------------------------------------------- /LvglPlatform/Lvgl.Build.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglPlatform/Lvgl.Build.Tasks.dll -------------------------------------------------------------------------------- /LvglPlatform/LvglWindowsIconResource/LvglWindowsIconResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglPlatform/LvglWindowsIconResource/LvglWindowsIconResource.h -------------------------------------------------------------------------------- /LvglPlatform/LvglWindowsIconResource/LvglWindowsIconResource.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglPlatform/LvglWindowsIconResource/LvglWindowsIconResource.ico -------------------------------------------------------------------------------- /LvglPlatform/LvglWindowsIconResource/LvglWindowsIconResource.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglPlatform/LvglWindowsIconResource/LvglWindowsIconResource.props -------------------------------------------------------------------------------- /LvglPlatform/LvglWindowsIconResource/LvglWindowsIconResource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglPlatform/LvglWindowsIconResource/LvglWindowsIconResource.rc -------------------------------------------------------------------------------- /LvglPlatform/Mile.Project.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglPlatform/Mile.Project.Helpers.dll -------------------------------------------------------------------------------- /LvglProjectFileUpdater/LvglProjectFileUpdater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglProjectFileUpdater/LvglProjectFileUpdater.csproj -------------------------------------------------------------------------------- /LvglProjectFileUpdater/LvglWindowsLibraryProjectUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglProjectFileUpdater/LvglWindowsLibraryProjectUpdater.cs -------------------------------------------------------------------------------- /LvglProjectFileUpdater/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglProjectFileUpdater/Program.cs -------------------------------------------------------------------------------- /LvglWindows/LvglWindows.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglWindows/LvglWindows.manifest -------------------------------------------------------------------------------- /LvglWindows/LvglWindows.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglWindows/LvglWindows.vcxproj -------------------------------------------------------------------------------- /LvglWindows/LvglWindowsStatic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglWindows/LvglWindowsStatic.vcxproj -------------------------------------------------------------------------------- /LvglWindows/LvglWindowsStatic.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglWindows/LvglWindowsStatic.vcxproj.filters -------------------------------------------------------------------------------- /LvglWindows/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglWindows/lv_conf.h -------------------------------------------------------------------------------- /LvglWindowsDesktopApplication/LvglWindowsDesktopApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglWindowsDesktopApplication/LvglWindowsDesktopApplication.cpp -------------------------------------------------------------------------------- /LvglWindowsDesktopApplication/LvglWindowsDesktopApplication.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglWindowsDesktopApplication/LvglWindowsDesktopApplication.manifest -------------------------------------------------------------------------------- /LvglWindowsDesktopApplication/LvglWindowsDesktopApplication.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglWindowsDesktopApplication/LvglWindowsDesktopApplication.vcxproj -------------------------------------------------------------------------------- /LvglWindowsDesktopApplication/LvglWindowsDesktopApplication.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglWindowsDesktopApplication/LvglWindowsDesktopApplication.vcxproj.filters -------------------------------------------------------------------------------- /LvglWindowsDesktopApplication/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglWindowsDesktopApplication/lv_conf.h -------------------------------------------------------------------------------- /LvglWindowsSimulator/LvglWindowsSimulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglWindowsSimulator/LvglWindowsSimulator.cpp -------------------------------------------------------------------------------- /LvglWindowsSimulator/LvglWindowsSimulator.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglWindowsSimulator/LvglWindowsSimulator.manifest -------------------------------------------------------------------------------- /LvglWindowsSimulator/LvglWindowsSimulator.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglWindowsSimulator/LvglWindowsSimulator.vcxproj -------------------------------------------------------------------------------- /LvglWindowsSimulator/LvglWindowsSimulator.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglWindowsSimulator/LvglWindowsSimulator.vcxproj.filters -------------------------------------------------------------------------------- /LvglWindowsSimulator/freetype.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglWindowsSimulator/freetype.props -------------------------------------------------------------------------------- /LvglWindowsSimulator/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/LvglWindowsSimulator/lv_conf.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/Screenshot.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_pc_visual_studio/HEAD/manifest.json --------------------------------------------------------------------------------