I'm developing a FreeRTOS application for an Microblaze in the vitis unified IDE v2023.2.0 on a Windows 11 Pro machine
As soon as I'm adding folders to my source code Vitis creates a CMakeLists.txt file that contains non-Windows compatible \ backslashes
Example:
collect (PROJECT_LIB_SOURCES adrv9001_src\beginReceiving.c)
This vitis generatet CMakeLists.txt file will generate a syntax-error that says 'Invalid character escape '\b''
All the other backslashes in the generated file are Windows-compatible (/)
Am I doing something wrong or is it a bug?
Best regards