Fix compilation issue for FreeRTOS Plus WolfSSL demo (#1278)

* Fix compilation issue for FreeRTOS Plus WolfSSL demo

* Upgrade VS toolset

* Remove vcxproj files from formatting check

---------

Co-authored-by: kar-rahul-aws <karahulx@amazon.com>
pull/1287/head
Rohit Madan 4 months ago committed by GitHub
parent 5fb0889c7b
commit 592fd043a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -45,7 +45,7 @@ jobs:
- name: Check Formatting
uses: FreeRTOS/CI-CD-Github-Actions/formatting@main
with:
exclude-dirs: ethernet, drivers, FreeRTOS/Demo
exclude-dirs: ethernet, drivers, FreeRTOS/Demo, FreeRTOS-Plus/Demo
spell-check:
runs-on: ubuntu-latest

@ -21,13 +21,13 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_with_Libslirp|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
@ -160,10 +160,9 @@ xcopy /y /d "..\..\ThirdParty\glib\build\subprojects\pcre2-10.42\pcre2-8-0.dll"
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\ge_low_mem.c" />
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\ge_operations.c" />
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\hash.c" />
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\hc128.c" />
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\hmac.c" />
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\idea.c" />
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\integer.c" />
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\kdf.c" />
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\logging.c" />
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\md2.c" />
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\md4.c" />
@ -174,7 +173,6 @@ xcopy /y /d "..\..\ThirdParty\glib\build\subprojects\pcre2-10.42\pcre2-8-0.dll"
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\pkcs7.c" />
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\poly1305.c" />
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\pwdbased.c" />
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\rabbit.c" />
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\random.c" />
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\ripemd.c" />
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\rsa.c" />

@ -260,15 +260,9 @@
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\hash.c">
<Filter>wolfSSL\wolfcrypt</Filter>
</ClCompile>
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\hc128.c">
<Filter>wolfSSL\wolfcrypt</Filter>
</ClCompile>
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\hmac.c">
<Filter>wolfSSL\wolfcrypt</Filter>
</ClCompile>
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\idea.c">
<Filter>wolfSSL\wolfcrypt</Filter>
</ClCompile>
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\integer.c">
<Filter>wolfSSL\wolfcrypt</Filter>
</ClCompile>
@ -302,9 +296,6 @@
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\pwdbased.c">
<Filter>wolfSSL\wolfcrypt</Filter>
</ClCompile>
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\rabbit.c">
<Filter>wolfSSL\wolfcrypt</Filter>
</ClCompile>
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\random.c">
<Filter>wolfSSL\wolfcrypt</Filter>
</ClCompile>
@ -380,6 +371,9 @@
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\wolfmath.c">
<Filter>wolfSSL\wolfcrypt</Filter>
</ClCompile>
<ClCompile Include="..\..\ThirdParty\wolfSSL\wolfcrypt\src\kdf.c">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="user_settings.h">

Loading…
Cancel
Save