Skip to content

Commit

Permalink
Sped up build on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
nefarius committed Jul 20, 2024
1 parent 1718960 commit 69bb4a4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Watchdog/Watchdog.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -87,18 +87,18 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<TargetName>HidHideWatchdog</TargetName>
<OutDir>$(SolutionDir)bin\$(Configuration)\$(Platform)\</OutDir>
<RunCodeAnalysis>true</RunCodeAnalysis>
<RunCodeAnalysis Condition="'$(CI)'==''">true</RunCodeAnalysis>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<TargetName>HidHideWatchdog</TargetName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<TargetName>HidHideWatchdog</TargetName>
<OutDir>$(SolutionDir)bin\$(Configuration)\$(Platform)\</OutDir>
<RunCodeAnalysis>true</RunCodeAnalysis>
<RunCodeAnalysis Condition="'$(CI)'==''">true</RunCodeAnalysis>
</PropertyGroup>
<PropertyGroup Label="Vcpkg">
<VcpkgEnableManifest>true</VcpkgEnableManifest>
<VcpkgEnableManifest Condition="'$(CI)'==''">true</VcpkgEnableManifest>
</PropertyGroup>
<PropertyGroup Label="Vcpkg" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<VcpkgUseStatic>true</VcpkgUseStatic>
Expand Down Expand Up @@ -219,4 +219,4 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
</Project>
3 changes: 3 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@ configuration: Release
skip_commits:
files:
- '**/*.md'
test: off
platform:
- x64
install:
# manifest mode takes forever to build each commit so use global copy instead
- cmd: vcpkg install poco:%PLATFORM%-windows-static spdlog:%PLATFORM%-windows-static winreg:%PLATFORM%-windows-static
- ps: Setup-VS2022
build:
project: $(APPVEYOR_BUILD_FOLDER)\$(APPVEYOR_PROJECT_NAME).sln
Expand Down

0 comments on commit 69bb4a4

Please sign in to comment.