Skip to content

Commit c81f7ff

Browse files
committed
Restructure the repository.
LibOVRProxy is removed in the process for now.
1 parent 0c0b066 commit c81f7ff

25 files changed

+69
-480
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ paket-files/
252252
*.sln.iml
253253

254254
# Ignore third-party library
255-
LibOVR/
255+
Externals/LibOVR/
256256

257257
# Ignore compiled installers
258258
Installer/*.exe

.gitmodules

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
[submodule "openvr"]
2-
path = openvr
2+
path = Externals/openvr
33
url = https://github.com/ValveSoftware/openvr.git
44
[submodule "minhook"]
5-
path = minhook
5+
path = Externals/minhook
66
url = https://github.com/TsudaKageyu/minhook.git
77
[submodule "glew"]
8-
path = glew
8+
path = Externals/glew
99
url = https://github.com/LibreVR/ext-win-glew.git
1010
[submodule "WinSparkle"]
11-
path = WinSparkle
11+
path = Externals/WinSparkle
1212
url = https://github.com/LibreVR/ext-win-sparkle.git
1313
[submodule "microprofile"]
14-
path = microprofile
14+
path = Externals/microprofile
1515
url = https://github.com/zeux/microprofile.git
1616
[submodule "Vulkan"]
17-
path = Vulkan
17+
path = Externals/Vulkan
1818
url = https://github.com/KhronosGroup/Vulkan-Docs.git
1919
[submodule "LuaJIT"]
20-
path = LuaJIT
20+
path = Externals/LuaJIT
2121
url = https://github.com/LibreVR/ext-win-luajit.git

Common.props

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ImportGroup Label="PropertySheets" />
4+
<PropertyGroup Label="UserMacros">
5+
<Externals>$(SolutionDir)Externals\</Externals>
6+
</PropertyGroup>
7+
<PropertyGroup />
8+
<ItemDefinitionGroup />
9+
<ItemGroup>
10+
<BuildMacro Include="Externals">
11+
<Value>$(Externals)</Value>
12+
</BuildMacro>
13+
</ItemGroup>
14+
</Project>

LuaJIT renamed to Externals/LuaJIT

Vulkan renamed to Externals/Vulkan

glew renamed to Externals/glew

Submodule glew updated from 0000000 to f98f008

openvr renamed to Externals/openvr

0 commit comments

Comments
 (0)