Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/chapter09_08a/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# ./build.sh /usr/local/real-time-cpp/examples/chapter09_08a/tools/Util/MinGW/msys/1.0/local/gcc-9.2.0-avr/bin avr

# Usage example B (from Win* shell such as in Git for Win*)
# cd C:/Users/User/Documents/Ks/uC_Software/Boards/real-time-cpp/examples/chapter09_08a
# cd C:/Users/ckorm/Documents/Ks/uC_Software/Boards/real-time-cpp/examples/chapter09_08a
# ./build.sh C:/Users/User/Documents/Ks/uC_Software/Boards/real-time-cpp/examples/chapter09_08a/tools/Util/MinGW/msys/1.0/local/gcc-9.2.0-avr/bin avr

if [[ $# == 0 ]]; then ## $# is the number of arguments
Expand Down
34 changes: 18 additions & 16 deletions examples/chapter12_04/build.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

@rem
@rem Copyright Christopher Kormanyos 2014 - 2021.
@rem Copyright Christopher Kormanyos 2014 - 2025.
@rem Distributed under the Boost Software License,
@rem Version 1.0. (See accompanying file LICENSE_1_0.txt
@rem or copy at http://www.boost.org/LICENSE_1_0.txt)
Expand All @@ -12,22 +12,22 @@
@rem build.bat directory_of_gcc_bin prefix_of_avr_gcc

@rem Usage example A,
@rem cd "C:\Users\User\Documents\Ks\uC_Software\Boards\real-time-cpp\examples\chapter12_04"
@rem cd "C:\Users\ckorm\Documents\Ks\uC_Software\Boards\real-time-cpp\examples\chapter12_04"
@rem build.bat "C:\Users\User\Documents\Ks\uC_Software\Boards\real-time-cpp\examples\chapter12_04\tools\Util\msys64\usr\local\gcc-11.2.0-avr\bin" avr

@rem Usage example A1 (use a relative tool path),
@rem cd "C:\Users\User\Documents\Ks\uC_Software\Boards\real-time-cpp\examples\chapter12_04"
@rem build.bat ".\tools\Util\msys64\usr\local\gcc-11.2.0-avr\bin" avr
@rem cd "C:\Users\ckorm\Documents\Ks\uC_Software\Boards\real-time-cpp\examples\chapter12_04"
@rem build.bat ".\tools\Util\msys64\usr\local\gcc-15.1.0-avr\bin" avr

@rem Usage example B,
@rem cd "C:\Users\User\Documents\Ks\uC_Software\Boards\real-time-cpp\examples\chapter12_04"
@rem build.bat "C:\Program Files (x86)\gcc-11.2.0-avr\bin" avr
@rem cd "C:\Users\ckorm\Documents\Ks\uC_Software\Boards\real-time-cpp\examples\chapter12_04"
@rem build.bat "C:\Program Files (x86)\gcc-15.1.0-avr\bin" avr


@set TOOL_PATH=%1
@set TOOL_PREFIX=%2

@set CFLAGS=-Wall -Wextra -pedantic -mmcu=atmega328p -fsigned-char -O2 -fno-exceptions -gdwarf-2 -ffunction-sections -fdata-sections
@set CFLAGS=-Wall -Wextra -Wpedantic -mmcu=atmega328p -fsigned-char -O2 -fno-exceptions -gdwarf-2 -ffunction-sections -fdata-sections
@set CPPFLAGS=-std=c++14 -fno-rtti -fstrict-enums -fno-use-cxa-atexit -fno-use-cxa-get-exception-ptr -fno-nonansi-builtins -fno-threadsafe-statics -fno-enforce-eh-specs
@set CINCLUDES=-Isrc/util/STL_C++XX_stdfloat -Isrc/util/STL -Isrc/mcal/avr -Isrc

Expand All @@ -51,9 +51,6 @@
@echo.Compile : cmath_impl_gamma.cpp to bin/cmath_impl_gamma.o
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/util/STL/impl/cmath_impl_gamma.cpp -o bin/cmath_impl_gamma.o

@echo.Compile : avr_float_limits.cpp to bin/avr_float_limits.o
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/util/STL/impl/avr/avr_float_limits.cpp -o bin/avr_float_limits.o

@echo.Compile : mcal.cpp to bin/mcal.o
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/mcal/mcal.cpp -o bin/mcal.o

Expand All @@ -63,6 +60,9 @@
@echo.Compile : mcal_cpu.cpp to bin/mcal_cpu.o
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/mcal/avr/mcal_cpu.cpp -o bin/mcal_cpu.o

@echo.Compile : mcal_eep.cpp to bin/mcal_eep.o
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/mcal/avr/mcal_eep.cpp -o bin/mcal_eep.o

@echo.Compile : mcal_gpt.cpp to bin/mcal_gpt.o
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/mcal/avr/mcal_gpt.cpp -o bin/mcal_gpt.o

Expand All @@ -78,15 +78,18 @@
@echo.Compile : mcal_port.cpp to bin/mcal_port.o
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/mcal/avr/mcal_port.cpp -o bin/mcal_port.o

@echo.Compile : mcal_pwm.cpp to bin/mcal_pwm.o
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/mcal/avr/mcal_pwm.cpp -o bin/mcal_pwm.o

@echo.Compile : mcal_spi.cpp to bin/mcal_spi.o
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/mcal/avr/mcal_spi.cpp -o bin/mcal_spi.o

@echo.Compile : mcal_wdg.cpp to bin/mcal_wdg.o
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/mcal/avr/mcal_wdg.cpp -o bin/mcal_wdg.o

@echo.Compile : os.cpp to bin/os.o
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/os/os.cpp -o bin/os.o

@echo.Compile : os.cpp to bin/os_task_control_block.o
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/os/os_task_control_block.cpp -o bin/os_task_control_block.o

@echo.Compile : sys_idle.cpp to bin/sys_idle.o
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/sys/idle/sys_idle.cpp -o bin/sys_idle.o

Expand All @@ -109,7 +112,7 @@
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c target/micros/avr/startup/int_vect.cpp -o bin/int_vect.o

@echo.Link : objects to bin/chapter12_04.elf
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x none -mrelax -nostartfiles %CFLAGS% %CPPFLAGS% %CINCLUDES% -Wl,--gc-sections -Wl,-Ttarget/micros/avr/make/avr.ld,-Map,bin/chapter12_04.map bin/app_benchmark.o bin/app_led.o bin/cmath_impl_gamma.o bin/avr_float_limits.o bin/mcal.o bin/mcal_gcc_cxx_completion.o bin/mcal_cpu.o bin/mcal_gpt.o bin/mcal_irq.o bin/mcal_led.o bin/mcal_osc.o bin/mcal_port.o bin/mcal_wdg.o bin/os.o bin/os_task_control_block.o bin/sys_idle.o bin/sys_mon.o bin/sys_start.o bin/crt0.o bin/crt0_init_ram.o bin/crt1.o bin/int_vect.o -o bin/chapter12_04.elf
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x none -mrelax -nostartfiles %CFLAGS% %CPPFLAGS% %CINCLUDES% -Wl,--gc-sections -Wl,-Ttarget/micros/avr/make/avr.ld,-Map,bin/chapter12_04.map bin/app_benchmark.o bin/app_led.o bin/cmath_impl_gamma.o bin/mcal.o bin/mcal_gcc_cxx_completion.o bin/mcal_cpu.o bin/mcal_eep.o bin/mcal_gpt.o bin/mcal_irq.o bin/mcal_led.o bin/mcal_osc.o bin/mcal_port.o bin/mcal_pwm.o bin/mcal_spi.o bin/mcal_wdg.o bin/os.o bin/sys_idle.o bin/sys_mon.o bin/sys_start.o bin/crt0.o bin/crt0_init_ram.o bin/crt1.o bin/int_vect.o -o bin/chapter12_04.elf

@echo.
@echo.Extract : executable hex file : from bin/chapter12_04.elf
Expand All @@ -127,8 +130,7 @@
@echo.Extract : demangled names : from bin/chapter12_04.elf
@%TOOL_PATH%\%TOOL_PREFIX%-nm --numeric-sort --print-size bin/chapter12_04.elf | %TOOL_PATH%\%TOOL_PREFIX%-c++filt > bin\chapter12_04_cppfilt.txt

dir .\bin\chapter12_04.elf
dir .\bin\chapter12_04.hex
dir .\bin\chapter12_04.elf .\bin\chapter12_04.hex

if not exist .\bin\chapter12_04.elf exit 1
if not exist .\bin\chapter12_04.hex exit 1
Expand Down
23 changes: 13 additions & 10 deletions examples/chapter12_04/build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
#
# Copyright Christopher Kormanyos 2014 - 2020.
# Copyright Christopher Kormanyos 2014 - 2025.
# Distributed under the Boost Software License,
# Version 1.0. (See accompanying file LICENSE_1_0.txt
# or copy at http://www.boost.org/LICENSE_1_0.txt)
Expand All @@ -26,8 +26,8 @@
# ./build.sh /usr/local/real-time-cpp/examples/chapter12_04/tools/Util/MinGW/msys/1.0/local/gcc-9.2.0-avr/bin avr

# Usage example B (from Win* shell such as in Git for Win*)
# cd C:/Users/User/Documents/Ks/uC_Software/Boards/real-time-cpp/examples/chapter12_04
# ./build.sh C:/Users/User/Documents/Ks/uC_Software/Boards/real-time-cpp/examples/chapter12_04/tools/Util/MinGW/msys/1.0/local/gcc-9.2.0-avr/bin avr
# cd C:/Users/ckorm/Documents/Ks/uC_Software/Boards/real-time-cpp/examples/chapter12_04
# ./build.sh C:/Users/User/Documents/Ks/uC_Software/Boards/real-time-cpp/examples/chapter12_04/tools/Util/MinGW/msys/1.0/local/gcc-15.1.0-avr/bin avr

if [[ $# == 0 ]]; then ## $# is the number of arguments
if [[ -n "$(which avr-g++)" ]]; then ## -n tests if string is not empty
Expand Down Expand Up @@ -70,9 +70,6 @@ $TOOL_PATH/$TOOL_PREFIX-g++ -x c++ $CFLAGS $CPPFLAGS $CINCLUDES -c src/app/led/a
echo "Compile : cmath_impl_gamma.cpp to bin/cmath_impl_gamma.o"
$TOOL_PATH/$TOOL_PREFIX-g++ -x c++ $CFLAGS $CPPFLAGS $CINCLUDES -c src/util/STL/impl/cmath_impl_gamma.cpp -o bin/cmath_impl_gamma.o

echo "Compile : avr_float_limits.cpp to bin/avr_float_limits.o"
$TOOL_PATH/$TOOL_PREFIX-g++ -x c++ $CFLAGS $CPPFLAGS $CINCLUDES -c src/util/STL/impl/avr/avr_float_limits.cpp -o bin/avr_float_limits.o

echo "Compile : mcal.cpp to bin/mcal.o"
$TOOL_PATH/$TOOL_PREFIX-g++ -x c++ $CFLAGS $CPPFLAGS $CINCLUDES -c src/mcal/mcal.cpp -o bin/mcal.o

Expand All @@ -82,6 +79,9 @@ $TOOL_PATH/$TOOL_PREFIX-g++ -x c++ $CFLAGS $CPPFLAGS $CINCLUDES -c src/mcal/mcal
echo "Compile : mcal_cpu.cpp to bin/mcal_cpu.o"
$TOOL_PATH/$TOOL_PREFIX-g++ -x c++ $CFLAGS $CPPFLAGS $CINCLUDES -c src/mcal/avr/mcal_cpu.cpp -o bin/mcal_cpu.o

echo "Compile : mcal_eep.cpp to bin/mcal_eep.o"
$TOOL_PATH/$TOOL_PREFIX-g++ -x c++ $CFLAGS $CPPFLAGS $CINCLUDES -c src/mcal/avr/mcal_eep.cpp -o bin/mcal_eep.o

echo "Compile : mcal_gpt.cpp to bin/mcal_gpt.o"
$TOOL_PATH/$TOOL_PREFIX-g++ -x c++ $CFLAGS $CPPFLAGS $CINCLUDES -c src/mcal/avr/mcal_gpt.cpp -o bin/mcal_gpt.o

Expand All @@ -100,12 +100,15 @@ $TOOL_PATH/$TOOL_PREFIX-g++ -x c++ $CFLAGS $CPPFLAGS $CINCLUDES -c src/mcal/avr/
echo "Compile : mcal_wdg.cpp to bin/mcal_wdg.o"
$TOOL_PATH/$TOOL_PREFIX-g++ -x c++ $CFLAGS $CPPFLAGS $CINCLUDES -c src/mcal/avr/mcal_wdg.cpp -o bin/mcal_wdg.o

echo "Compile : mcal_pwm.cpp to bin/mcal_pwm.o"
$TOOL_PATH/$TOOL_PREFIX-g++ -x c++ $CFLAGS $CPPFLAGS $CINCLUDES -c src/mcal/avr/mcal_pwm.cpp -o bin/mcal_pwm.o

echo "Compile : mcal_spi.cpp to bin/mcal_spi.o"
$TOOL_PATH/$TOOL_PREFIX-g++ -x c++ $CFLAGS $CPPFLAGS $CINCLUDES -c src/mcal/avr/mcal_spi.cpp -o bin/mcal_spi.o

echo "Compile : os.cpp to bin/os.o"
$TOOL_PATH/$TOOL_PREFIX-g++ -x c++ $CFLAGS $CPPFLAGS $CINCLUDES -c src/os/os.cpp -o bin/os.o

echo "Compile : os.cpp to bin/os_task_control_block.o".
$TOOL_PATH/$TOOL_PREFIX-g++ -x c++ $CFLAGS $CPPFLAGS $CINCLUDES -c src/os/os_task_control_block.cpp -o bin/os_task_control_block.o

echo "Compile : sys_idle.cpp to bin/sys_idle.o"
$TOOL_PATH/$TOOL_PREFIX-g++ -x c++ $CFLAGS $CPPFLAGS $CINCLUDES -c src/sys/idle/sys_idle.cpp -o bin/sys_idle.o

Expand All @@ -128,7 +131,7 @@ echo "Compile : int_vect.cpp to bin/int_vect.o"
$TOOL_PATH/$TOOL_PREFIX-g++ -x c++ $CFLAGS $CPPFLAGS $CINCLUDES -c target/micros/avr/startup/int_vect.cpp -o bin/int_vect.o

echo "Link : objects to bin/chapter12_04.elf"
$TOOL_PATH/$TOOL_PREFIX-g++ -x none -mrelax -nostartfiles $CFLAGS $CPPFLAGS $CINCLUDES -Wl,--gc-sections -Wl,-Ttarget/micros/avr/make/avr.ld,-Map,bin/chapter12_04.map bin/app_benchmark.o bin/app_led.o bin/cmath_impl_gamma.o bin/avr_float_limits.o bin/mcal.o bin/mcal_gcc_cxx_completion.o bin/mcal_cpu.o bin/mcal_gpt.o bin/mcal_irq.o bin/mcal_led.o bin/mcal_osc.o bin/mcal_port.o bin/mcal_wdg.o bin/os.o bin/os_task_control_block.o bin/sys_idle.o bin/sys_mon.o bin/sys_start.o bin/crt0.o bin/crt0_init_ram.o bin/crt1.o bin/int_vect.o -o bin/chapter12_04.elf
$TOOL_PATH/$TOOL_PREFIX-g++ -x none -mrelax -nostartfiles $CFLAGS $CPPFLAGS $CINCLUDES -Wl,--gc-sections -Wl,-Ttarget/micros/avr/make/avr.ld,-Map,bin/chapter12_04.map bin/app_benchmark.o bin/app_led.o bin/cmath_impl_gamma.o bin/mcal.o bin/mcal_gcc_cxx_completion.o bin/mcal_cpu.o bin/mcal_eep.o bin/mcal_gpt.o bin/mcal_irq.o bin/mcal_led.o bin/mcal_osc.o bin/mcal_port.o bin/mcal_pwm.o bin/mcal_spi.o bin/mcal_wdg.o bin/os.o bin/sys_idle.o bin/sys_mon.o bin/sys_start.o bin/crt0.o bin/crt0_init_ram.o bin/crt1.o bin/int_vect.o -o bin/chapter12_04.elf

echo
echo "Extract : executable hex file : from bin/chapter12_04.elf"
Expand Down
100 changes: 86 additions & 14 deletions examples/chapter12_04/chapter12_04.cppproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@
<BootSegment>2</BootSegment>
<AsfFrameworkConfig>
<framework-data>
<options />
<configurations />
<files />
<documentation help="" />
<offline-documentation help="" />
<dependencies>
<content-extension eid="atmel.asf" uuidref="Atmel.ASF" version="3.39.0" />
</dependencies>
</framework-data>
<options />
<configurations />
<files />
<documentation help="" />
<offline-documentation help="" />
<dependencies>
<content-extension eid="atmel.asf" uuidref="Atmel.ASF" version="3.39.0" />
</dependencies>
</framework-data>
</AsfFrameworkConfig>
<ResetRule>0</ResetRule>
<EraseKey />
Expand Down Expand Up @@ -199,6 +199,12 @@
<Compile Include="src\mcal\avr\mcal_cpu.h">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\mcal\avr\mcal_eep.cpp">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\mcal\avr\mcal_eep.h">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\mcal\avr\mcal_gpt.cpp">
<SubType>compile</SubType>
</Compile>
Expand Down Expand Up @@ -232,9 +238,39 @@
<Compile Include="src\mcal\avr\mcal_port.h">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\mcal\avr\mcal_port_expander_microchip_mcp23s17.h">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\mcal\avr\mcal_port_pin_dummy.h">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\mcal\avr\mcal_port_word.h">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\mcal\avr\mcal_pwm.cpp">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\mcal\avr\mcal_pwm.h">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\mcal\avr\mcal_pwm_lcd.h">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\mcal\avr\mcal_pwm_timer1.h">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\mcal\avr\mcal_reg.h">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\mcal\avr\mcal_ser.h">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\mcal\avr\mcal_spi.cpp">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\mcal\avr\mcal_spi.h">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\mcal\avr\mcal_wdg.cpp">
<SubType>compile</SubType>
</Compile>
Expand Down Expand Up @@ -286,9 +322,6 @@
<Compile Include="src\os\os_cfg.h">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\os\os_task_control_block.cpp">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\os\os_task_control_block.h">
<SubType>compile</SubType>
</Compile>
Expand Down Expand Up @@ -319,15 +352,18 @@
<Compile Include="src\util\STL\impl\allocator_impl.h">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\util\STL\impl\avr\avr_atomic.h">
<Compile Include="src\util\STL\impl\alloc_traits.h">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\util\STL\impl\avr\avr_float_limits.cpp">
<Compile Include="src\util\STL\impl\avr\avr_atomic.h">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\util\STL\impl\cmath_impl_gamma.cpp">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\util\STL\impl\ptr_traits.h">
<SubType>compile</SubType>
</Compile>
<Compile Include="src\util\STL\impl\stl_local_constexpr.h">
<SubType>compile</SubType>
</Compile>
Expand Down Expand Up @@ -417,12 +453,30 @@
<None Include="src\util\STL\basic_string">
<SubType>compile</SubType>
</None>
<None Include="src\util\STL\bitset">
<SubType>compile</SubType>
</None>
<None Include="src\util\STL\cassert">
<SubType>compile</SubType>
</None>
<None Include="src\util\STL\cerrno">
<SubType>compile</SubType>
</None>
<None Include="src\util\STL\cfloat">
<SubType>compile</SubType>
</None>
<None Include="src\util\STL\charconv">
<SubType>compile</SubType>
</None>
<None Include="src\util\STL\chrono">
<SubType>compile</SubType>
</None>
<None Include="src\util\STL\cinttypes">
<SubType>compile</SubType>
</None>
<None Include="src\util\STL\ciso646">
<SubType>compile</SubType>
</None>
<None Include="src\util\STL\climits">
<SubType>compile</SubType>
</None>
Expand All @@ -444,6 +498,9 @@
<None Include="src\util\STL\cstdlib">
<SubType>compile</SubType>
</None>
<None Include="src\util\STL\cstring">
<SubType>compile</SubType>
</None>
<None Include="src\util\STL\ctime">
<SubType>compile</SubType>
</None>
Expand All @@ -465,9 +522,21 @@
<None Include="src\util\STL\numeric">
<SubType>compile</SubType>
</None>
<None Include="src\util\STL\random">
<SubType>compile</SubType>
</None>
<None Include="src\util\STL\ratio">
<SubType>compile</SubType>
</None>
<None Include="src\util\STL\span">
<SubType>compile</SubType>
</None>
<None Include="src\util\STL\stdexcept">
<SubType>compile</SubType>
</None>
<None Include="src\util\STL\stdfloat">
<SubType>compile</SubType>
</None>
<None Include="src\util\STL\string">
<SubType>compile</SubType>
</None>
Expand All @@ -483,6 +552,9 @@
<None Include="src\util\STL\vector">
<SubType>compile</SubType>
</None>
<None Include="src\util\STL\version">
<SubType>compile</SubType>
</None>
<None Include="src\util\STL_C++XX_stdfloat\cstdfloat">
<SubType>compile</SubType>
</None>
Expand Down
Loading