mirror of
https://github.com/LCEMP/LCEMP.git
synced 2026-04-23 07:24:14 +00:00
Build Minecraft.World
This commit is contained in:
parent
7d8f03698c
commit
046642df32
33
.github/workflows/build-channel.yml
vendored
33
.github/workflows/build-channel.yml
vendored
|
|
@ -94,6 +94,21 @@ jobs:
|
|||
- name: Build Minecraft.Client (Release)
|
||||
shell: pwsh
|
||||
run: |
|
||||
msbuild .\Minecraft.World\Minecraft.World.vcxproj `
|
||||
/m `
|
||||
/t:Build `
|
||||
/p:Configuration=Release `
|
||||
/p:Platform=x64 `
|
||||
/p:PlatformToolset=${{ env.WINDOWS_PLATFORM_TOOLSET }} `
|
||||
/p:PreferredToolArchitecture=x64 `
|
||||
/p:UseMultiToolTask=true `
|
||||
/p:CL_MPCount=8 `
|
||||
/verbosity:minimal
|
||||
|
||||
if (-not (Test-Path .\Minecraft.World\x64_Release\Minecraft.World.lib)) {
|
||||
throw "Minecraft.World.lib was not produced at .\\Minecraft.World\\x64_Release\\Minecraft.World.lib"
|
||||
}
|
||||
|
||||
msbuild .\\Minecraft.Client\\Minecraft.Client.vcxproj `
|
||||
/m `
|
||||
/t:Build `
|
||||
|
|
@ -327,6 +342,24 @@ jobs:
|
|||
exit 1
|
||||
}
|
||||
|
||||
- name: Build Minecraft.World (Release)
|
||||
shell: pwsh
|
||||
run: |
|
||||
msbuild .\Minecraft.World\Minecraft.World.vcxproj `
|
||||
/m `
|
||||
/t:Build `
|
||||
/p:Configuration=Release `
|
||||
/p:Platform=x64 `
|
||||
/p:PlatformToolset=${{ env.WINDOWS_PLATFORM_TOOLSET }} `
|
||||
/p:PreferredToolArchitecture=x64 `
|
||||
/p:UseMultiToolTask=true `
|
||||
/p:CL_MPCount=8 `
|
||||
/verbosity:minimal
|
||||
|
||||
if (-not (Test-Path .\Minecraft.World\x64_Release\Minecraft.World.lib)) {
|
||||
throw "Minecraft.World.lib was not produced at .\\Minecraft.World\\x64_Release\\Minecraft.World.lib"
|
||||
}
|
||||
|
||||
- name: Build Minecraft.Server (Release)
|
||||
shell: pwsh
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Reference in a new issue