While reviewing a PR I noticed a bug.
Whenever a user hits make two times consecutively while building the repository, if there is any change in the include directory, the given change is not reflected and make does not build that change. The reason might be because the build/include once created by copying the include folder, then the changes are not reflected.
Steps to Reproduce
mkdir build && cd ./build
cmake ../
make
Then make some changes in any file (For example, in `summary_writer_impl.hpp` change the method name.)
make
Actual Behaviour
The changes made in summary_writer_impl.hpp are not getting reflected while building and the build compiles as normal.
Expected Behaviour
The changes should get reflected.
While reviewing a PR I noticed a bug.
Whenever a user hits
maketwo times consecutively while building the repository, if there is any change in theincludedirectory, the given change is not reflected andmakedoes not build that change. The reason might be because thebuild/includeonce created by copying theincludefolder, then the changes are not reflected.Steps to Reproduce
Actual Behaviour
The changes made in
summary_writer_impl.hppare not getting reflected while building and the build compiles as normal.Expected Behaviour
The changes should get reflected.