ninja: error: build.ninja:1135: FLASH.sig.c is defined as an output multiple times
Looks like then CMake does always replace one generator by another to manage projects.
Is there some special care to take in writing CMakeLists.txt when one wish to use ninja?
Thanks for any hint
I am using the latest version of CMake 3.31.4.
Projects are building am RTOS for embedded Arm platform (no public access). system.cmake (11.3 KB)
This is the file that is included by CMakeLists.txt
No there is only one instance of the file. The file is not generated in the project. It is a common file that has been manually generated and is included by projetcts
to have this file removed by make clean. But I understand this is not necessaary because files listed in OUTPUT are tagged GENERATED and will be removed also.