mirror of
https://github.com/ModOrganizer2/mob.git
synced 2026-07-27 14:07:05 -07:00
Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1bb0c4ce3d |
@@ -0,0 +1,9 @@
|
||||
param(
|
||||
[Parameter(Mandatory = $true)][String]$Path,
|
||||
[Parameter(Mandatory = $true)][String]$Output
|
||||
)
|
||||
|
||||
7z a $Output (Join-Path -Path $Path -ChildPath "boost")
|
||||
7z a $Output (Join-Path -Path $Path -ChildPath "lib32-msvc-14.3")
|
||||
7z a $Output (Join-Path -Path $Path -ChildPath "lib64-msvc-14.3")
|
||||
7z a $Output (Join-Path -Path $Path -ChildPath "LICENSE_1_0.txt")
|
||||
@@ -0,0 +1,13 @@
|
||||
param(
|
||||
[Parameter(Mandatory = $true)][String]$PyQtPath,
|
||||
[Parameter(Mandatory = $true)][String]$PythonPath,
|
||||
[Parameter(Mandatory = $true)][String]$Output
|
||||
)
|
||||
|
||||
$Output = [IO.Path]::GetFullPath($Output)
|
||||
|
||||
7z a $Output (Join-Path -Path $PyQtPath -ChildPath "LICENSE")
|
||||
|
||||
Push-Location $PythonPath
|
||||
7z a $Output "Lib/site-packages/PyQt6" "-xr!__pycache__"
|
||||
Pop-Location
|
||||
@@ -0,0 +1,10 @@
|
||||
param(
|
||||
[Parameter(Mandatory = $true)][String]$Path,
|
||||
[Parameter(Mandatory = $true)][String]$Output
|
||||
)
|
||||
|
||||
7z a $Output (Join-Path -Path $Path -ChildPath "PCbuild/amd64") "-xr!pythoncore_temp"
|
||||
7z rn $Output "amd64" "PCbuild/amd64"
|
||||
7z a $Output (Join-Path -Path $Path -ChildPath "Include") "-xr!internal" "-xr!sip.h"
|
||||
7z a $Output (Join-Path -Path $Path -ChildPath "Lib") "-xr!__pycache__" "-xr!site-packages"
|
||||
7z a $Output (Join-Path -Path $Path -ChildPath "LICENSE")
|
||||
Reference in New Issue
Block a user