Skip to content

Commit

Permalink
Modified msbuild working directory
Browse files Browse the repository at this point in the history
  • Loading branch information
BuzzteeBear committed Jul 26, 2024
1 parent 62572db commit e5372a7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
workflow_dispatch:

env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: .

# name of the project to build
PROJECT_NAME: XR_APILAYER_NOVENDOR_motion_compensation

Expand All @@ -26,6 +29,9 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
lfs: true
submodules: true

- name: Setup Python
uses: actions/setup-python@v5
Expand All @@ -48,4 +54,4 @@ jobs:
working-directory: ${{env.GITHUB_WORKSPACE}}
# Add additional options to the MSBuild command line here (like platform or verbosity level).
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild /t:rebuild /p:Configuration=${{env.BUILD_CONFIGURATION}} /v:diag .\${{env.PROJECT_NAME}}\${{env.PROJECT_NAME}}.vcxproj
run: msbuild /t:rebuild /p:Configuration=${{env.BUILD_CONFIGURATION}} /v:diag ${{env.SOLUTION_FILE_PATH}}
2 changes: 0 additions & 2 deletions OpenXR-MotionCompensation.sln
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,9 @@ Global
{A772D93D-0E95-4A88-8FE8-A67AB6C57E2B}.Release|x64.ActiveCfg = Release|x64
{A772D93D-0E95-4A88-8FE8-A67AB6C57E2B}.Release|x64.Build.0 = Release|x64
{54A184FF-D0F6-44E8-90C9-4097561C5EB9}.Debug|Win32.ActiveCfg = Debug|Win32
{54A184FF-D0F6-44E8-90C9-4097561C5EB9}.Debug|Win32.Build.0 = Debug|Win32
{54A184FF-D0F6-44E8-90C9-4097561C5EB9}.Debug|x64.ActiveCfg = Debug|x64
{54A184FF-D0F6-44E8-90C9-4097561C5EB9}.Debug|x64.Build.0 = Debug|x64
{54A184FF-D0F6-44E8-90C9-4097561C5EB9}.Release|Win32.ActiveCfg = Release|Win32
{54A184FF-D0F6-44E8-90C9-4097561C5EB9}.Release|Win32.Build.0 = Release|Win32
{54A184FF-D0F6-44E8-90C9-4097561C5EB9}.Release|x64.ActiveCfg = Release|x64
{54A184FF-D0F6-44E8-90C9-4097561C5EB9}.Release|x64.Build.0 = Release|x64
EndGlobalSection
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
<Import Project="..\packages\fmt.7.0.1\build\fmt.targets" Condition="Exists('..\packages\fmt.7.0.1\build\fmt.targets')" />
<Import Project="..\packages\Microsoft.Windows.ImplementationLibrary.1.0.220201.1\build\native\Microsoft.Windows.ImplementationLibrary.targets" Condition="Exists('..\packages\Microsoft.Windows.ImplementationLibrary.1.0.220201.1\build\native\Microsoft.Windows.ImplementationLibrary.targets')" />
<Import Project="..\packages\Microsoft.Windows.ImplementationLibrary.1.0.231028.1\build\native\Microsoft.Windows.ImplementationLibrary.targets" Condition="Exists('..\packages\Microsoft.Windows.ImplementationLibrary.1.0.231028.1\build\native\Microsoft.Windows.ImplementationLibrary.targets')" />
<Import Project="..\packages\directxtex_desktop_win10.2023.1.31.1\build\native\directxtex_desktop_win10.targets" Condition="Exists('..\packages\directxtex_desktop_win10.2023.1.31.1\build\native\directxtex_desktop_win10.targets')" />
</ImportGroup>
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
Expand Down

0 comments on commit e5372a7

Please sign in to comment.