You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Removing a a folder in the test suite should make CMake copy a fresh folder with updated test fils (I tried with tests/input). No executable or source file is affected and recompilation should therefore not be necessary.
Current Behavior
In addition to copying the folder (correct behavior) CMake recompiles some libraries.
Possible Solution
Steps to Reproduce (for bugs)
build the code
rm -rf build/tests/input
cd build
make
The text was updated successfully, but these errors were encountered:
The solution I can see is to make the copy operation a custom target upon which testing itself depends.
As a temporary workaround, touch CMakeLists.txt in the subdirectory of tests that you've modified.
Expected Behavior
Removing a a folder in the test suite should make CMake copy a fresh folder with updated test fils (I tried with tests/input). No executable or source file is affected and recompilation should therefore not be necessary.
Current Behavior
In addition to copying the folder (correct behavior) CMake recompiles some libraries.
Possible Solution
Steps to Reproduce (for bugs)
The text was updated successfully, but these errors were encountered: