Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
remove obsolete DXUT
Browse files Browse the repository at this point in the history
  • Loading branch information
HanetakaChou committed Nov 1, 2024
1 parent a822936 commit 45bff1c
Show file tree
Hide file tree
Showing 31 changed files with 53,082 additions and 2,098 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: build windows

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
build_windows:
runs-on: windows-latest
strategy:
matrix:
configuration: [Debug, Release]
platform: [x86, x64]
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- uses: microsoft/[email protected]
- shell: cmd
run: |
msbuild ./Demo.sln /p:Configuration=${{matrix.configuration}} /p:Platform=${{matrix.platform}}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/.vs
/bin
/obj
/dxbc
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "DXUT"]
path = DXUT
url = ../../microsoft/DXUT.git
1 change: 1 addition & 0 deletions DXUT
Submodule DXUT added at 49fe5d
31 changes: 31 additions & 0 deletions Demo.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31624.102
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Demo", "Demo.vcxproj", "{9E83B7CB-80B8-42FC-96CE-A5447BC3F624}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{9E83B7CB-80B8-42FC-96CE-A5447BC3F624}.Debug|x64.ActiveCfg = Debug|x64
{9E83B7CB-80B8-42FC-96CE-A5447BC3F624}.Debug|x64.Build.0 = Debug|x64
{9E83B7CB-80B8-42FC-96CE-A5447BC3F624}.Debug|x86.ActiveCfg = Debug|Win32
{9E83B7CB-80B8-42FC-96CE-A5447BC3F624}.Debug|x86.Build.0 = Debug|Win32
{9E83B7CB-80B8-42FC-96CE-A5447BC3F624}.Release|x64.ActiveCfg = Release|x64
{9E83B7CB-80B8-42FC-96CE-A5447BC3F624}.Release|x64.Build.0 = Release|x64
{9E83B7CB-80B8-42FC-96CE-A5447BC3F624}.Release|x86.ActiveCfg = Release|Win32
{9E83B7CB-80B8-42FC-96CE-A5447BC3F624}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {60CB3976-5245-44ED-8E8C-72F5511A5041}
EndGlobalSection
EndGlobal
Loading

0 comments on commit 45bff1c

Please sign in to comment.