We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, we designate OS as follows when delete gcda data :
template_application/test/CMakeLists.txt
Lines 24 to 32 in 559a57b
This is OK when the target is MSVC on the WIndows. But fail if the target is GCC on the WIndows. Perhaps, we should change as followings :
if (UNIX) elseif (WIN32) endif()
In Windows, the following command can work in both Powershell and command.com :
powershell -c remove-item -include *.gcda -recurse
The text was updated successfully, but these errors were encountered:
Make platform designation precise.
b0b85bb
Issue #23 The existing *gcda deletion was problematic when it is on Windows.
No branches or pull requests
Currently, we designate OS as follows when delete gcda data :
template_application/test/CMakeLists.txt
Lines 24 to 32 in 559a57b
This is OK when the target is MSVC on the WIndows. But fail if the target is GCC on the WIndows. Perhaps, we should change as followings :
In Windows, the following command can work in both Powershell and command.com :
The text was updated successfully, but these errors were encountered: