Handling header files dependencies with cmake

后端 未结 4 579
萌比男神i
萌比男神i 2020-11-28 22:34

I am using CMake on a small C++ project and so far it works great... with one twist :x

When I change a header file, it typically requires recompiling a number of sou

4条回答
  •  一生所求
    2020-11-28 23:22

    You should look at the depend.make files in your binary tree. It will be in CMakeFiles/target.dir/depend.make. Try to find one of those that is missing a .h file that you think it should have. Then create a bug report for cmake or email the cmake mailing list.

提交回复
热议问题