Update to match window-starter template

This commit is contained in:
McMassiveNZ
2023-05-28 21:58:29 +02:00
parent 05f1069e2f
commit c7a4dde1de
14 changed files with 55 additions and 78 deletions

View File

@@ -0,0 +1,16 @@
include_guard()
function(target_enable_static_analysis _target)
set(_VS_CLANG_TIDY "false")
find_program(CLANGTIDY clang-tidy)
if(CLANGTIDY)
set(_VS_CLANG_TIDY "true")
endif()
set_target_properties(
${_target}
PROPERTIES
VS_GLOBAL_EnableMicrosoftCodeAnalysis true
VS_GLOBAL_CodeAnalysisRuleSet "AllRules.ruleset"
VS_GLOBAL_EnableClangTidyCodeAnalysis "${_VS_CLANG_TIDY}"
)
endfunction()