CMake with Ninja how to define dependency file name extension -
my (embedded) c compiler produce dependency files in name "foo.c.d".
cmake generates following dependency entry in ninja.build:
dep_file = cmakefiles\foo.dir\foo.c.o.d
is there way tell cmake generate dependency entry "foo.c.d" without .o?
Comments
Post a Comment