TouchGFX build errors
I am using STM32CubeIDE 1.13.2 in Windows 11 and am trying to install TouchGFX.4.22.0 and its "Graphic Application" for a STM32H727i-DISCO board.
The project is newly created and there are 14 errors that I need help fixing.
As requested by the IDE, CRC was configured and activated before adding X-CUBE-TOUCHGFX.
Here are the errors. The .hpp files do appear on the same drive that CubeIDE and the project are on, but the IDE can't find them.
fatal error: platform/driver/touch/TouchController.hpp: No such file or directory
fatal error: texts/TypedTextDatabase.hpp: No such file or directory
fatal error: touchgfx/hal/BlitOp.hpp: No such file or directory
fatal error: touchgfx/hal/GPIO.hpp: No such file or directory
fatal error: touchgfx/hal/HAL.hpp: No such file or directory
fatal error: touchgfx/hal/HAL.hpp: No such file or directory
make: *** [TouchGFX/target/generated/subdir.mk:28: TouchGFX/target/generated/OSWrappers.o] Error 1
make: *** [TouchGFX/target/generated/subdir.mk:28: TouchGFX/target/generated/STM32DMA.o] Error 1
make: *** [TouchGFX/target/generated/subdir.mk:28: TouchGFX/target/generated/TouchGFXConfiguration.o] Error 1
make: *** [TouchGFX/target/generated/subdir.mk:28: TouchGFX/target/generated/TouchGFXGeneratedHAL.o] Error 1
make: *** [TouchGFX/target/subdir.mk:25: TouchGFX/target/STM32TouchController.o] Error 1
make: *** [TouchGFX/target/subdir.mk:25: TouchGFX/target/TouchGFXGPIO.o] Error 1
make: *** [TouchGFX/target/subdir.mk:25: TouchGFX/target/TouchGFXHAL.o] Error 1
make: *** Waiting for unfinished jobs....
For the first three errors, these are the #includes statements from their respective files:
#include <platform/driver/touch/TouchController.hpp>
#include <texts/TypedTextDatabase.hpp>
#include <touchgfx/hal/BlitOp.hpp>
Does anyone have any idea why the IDE cannot find these files?
