Open toshal-a opened 4 years ago
After making changes hit cmake again and then hit make , it will work
Currently the include dir is only build , so if we want to replicate what is done in mlpack the include dir should be ../include and then the changes would be reflected when you hit make
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 theinclude
directory, the given change is not reflected andmake
does not build that change. The reason might be because thebuild/include
once created by copying theinclude
folder, then the changes are not reflected.Steps to Reproduce
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.