diff options
author | Neil <nyamatongwe@gmail.com> | 2025-02-04 12:50:56 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2025-02-04 12:50:56 +1100 |
commit | c88990bc3bd3e043a426773d24d55a7527e84dcf (patch) | |
tree | 670b13c81656653b48214595f042f9a2016facda /test | |
parent | 4c9ddc3121d0488914858ee511028520b96fd0e9 (diff) | |
download | scintilla-mirror-c88990bc3bd3e043a426773d24d55a7527e84dcf.tar.gz |
Use Lexilla.ruleset from sibling lexilla directory instead of path on my
personal machine.
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/UnitTester.vcxproj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/unit/UnitTester.vcxproj b/test/unit/UnitTester.vcxproj index 87688523b..397c6ddef 100644 --- a/test/unit/UnitTester.vcxproj +++ b/test/unit/UnitTester.vcxproj @@ -75,13 +75,14 @@ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LinkIncremental>true</LinkIncremental>
<EnableClangTidyCodeAnalysis>true</EnableClangTidyCodeAnalysis>
- <CodeAnalysisRuleSet>..\..\..\..\..\Users\Neil\SensibleRules.ruleset</CodeAnalysisRuleSet>
+ <CodeAnalysisRuleSet>..\..\..\lexilla\src\Lexilla.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LinkIncremental>false</LinkIncremental>
+ <CodeAnalysisRuleSet>..\..\..\lexilla\src\Lexilla.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
|