-
-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
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
Build in Visual Studio IDE is broken #79
Comments
Having also encountered the reported issues I've submitted pull request #80 which resolves issue 1 by excluding 'misc-include-cleaner' as an error if warnings-as-errors is enabled and issue 3 by adding 'cppcheck-suppress knownConditionTrueFalse' comments to those cases. Issue 2: As best as I can tell, IntelliSense failing to satisfy the |
Issue 2: The last change, not submitted to lefticus::tools, can be seen here. |
Building intro.exe using Visual Studio IDE (17.8.5) is broken due to warnings emitted by clang-tidy and cppcheck. There are also compile errors involving
lefticus::tools
. Building on the command line using CMake seems to work.misc-include-cleaner
) inmain.cpp
:lefticus::tools::uint_np8_t
:There are other build issues as well, such as Debug builds being broken due to the use of address sanitizer with the
-MDd
compiler option (see #59). I realize that perhaps building was intended to be done from the command line with this template (as mentioned before, command line builds seem to work), but when developing on windows being able to make use of Visual Studio for editing and running/debugging my code is important. This template should be made compatible with Visual Studio IDE builds.The text was updated successfully, but these errors were encountered: