Skip to content

Commit e5643bd

Browse files
authored
Merge pull request #35 from apple1417/master
improve explict python version downloads
2 parents d18a05c + abca72b commit e5643bd

File tree

4 files changed

+27
-31
lines changed

4 files changed

+27
-31
lines changed

.github/workflows/build.yml

+6-20
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ env:
1616
# xwin settings
1717
XWIN_VERSION: xwin-0.5.0-x86_64-unknown-linux-musl
1818
XWIN_DOWNLOAD: https://github.com/Jake-Shadle/xwin/releases/download/0.5.0/xwin-0.5.0-x86_64-unknown-linux-musl.tar.gz
19-
# Python settings
20-
PYTHON_VERSION: "3.12.3"
2119

2220
jobs:
2321
cache-clang:
@@ -89,12 +87,7 @@ jobs:
8987
run: |
9088
pip install requests
9189
92-
python common_cmake/explicit_python/download.py `
93-
${{ env.PYTHON_VERSION }} `
94-
${{ fromJSON('["win32", "amd64"]')[contains(matrix.preset, 'x64')] }} `
95-
--no-debug
96-
97-
cmake . --preset ${{ matrix.preset }}
90+
cmake . --preset ${{ matrix.preset }} -G Ninja
9891
9992
- name: Build
10093
working-directory: ${{ env.GITHUB_WORKSPACE }}
@@ -198,16 +191,11 @@ jobs:
198191
run: |
199192
pip install requests
200193
201-
python common_cmake/explicit_python/download.py \
202-
${{ env.PYTHON_VERSION }} \
203-
${{ fromJSON('["win32", "amd64"]')[contains(matrix.preset, 'x64')] }} \
204-
--no-debug
205-
206194
cmake . \
207195
--preset ${{ matrix.preset }} \
208196
-G Ninja \
209197
-DXWIN_DIR=$(readlink -f ~)/xwin
210-
# The extra xwin dir arg won't do anything if we're not cross compiling
198+
# The extra xwin dir arg will be ignored if we don't need it
211199

212200
- name: Build
213201
working-directory: ${{ env.GITHUB_WORKSPACE }}
@@ -254,12 +242,10 @@ jobs:
254242
run: |
255243
pip install pyyaml requests
256244
257-
python common_cmake/explicit_python/download.py `
258-
${{ env.PYTHON_VERSION }} `
259-
${{ fromJSON('["win32", "amd64"]')[contains(matrix.preset, 'x64')] }} `
260-
--no-debug
261-
262-
cmake . --preset ${{ matrix.preset }} -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On
245+
cmake . `
246+
--preset ${{ matrix.preset }} `
247+
-G Ninja `
248+
-DCMAKE_DISABLE_PRECOMPILE_HEADERS=True
263249
264250
(Get-Content "out\build\${{ matrix.preset }}\compile_commands.json") `
265251
-replace "@CMakeFiles.+?\.modmap", "" `

CMakePresets.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
"name": "_base",
66
"hidden": true,
77
"binaryDir": "${sourceDir}/out/build/${presetName}",
8-
"installDir": "${sourceDir}/out/install/${presetName}"
8+
"installDir": "${sourceDir}/out/install/${presetName}",
9+
"cacheVariables": {
10+
"EXPLICIT_PYTHON_VERSION": "3.12.3"
11+
}
912
},
1013
{
1114
"name": "_clang_x86",
@@ -111,6 +114,7 @@
111114
"strategy": "external"
112115
},
113116
"cacheVariables": {
117+
"EXPLICIT_PYTHON_ARCH": "win32",
114118
"UNREALSDK_ARCH": "x86"
115119
}
116120
},
@@ -122,6 +126,7 @@
122126
"strategy": "external"
123127
},
124128
"cacheVariables": {
129+
"EXPLICIT_PYTHON_ARCH": "amd64",
125130
"UNREALSDK_ARCH": "x64"
126131
}
127132
},

Readme.md

+14-9
Original file line numberDiff line numberDiff line change
@@ -116,17 +116,22 @@ To build:
116116
git clone --recursive https://github.com/bl-sdk/pyunrealsdk.git
117117
```
118118

119-
2. Setup the python dev files. The simplest way is as follows:
119+
2. Make sure you have Python with requests on your PATH. This doesn't need to be the same version
120+
as what the SDK uses, it's just used by the script which downloads the correct one.
120121
```sh
121-
apt install msitools # Or equivalent for other package managers, not required on Windows
122-
123-
cd common_cmake/explicit_python
124122
pip install requests
125-
python download.py 3.11.4 amd64
123+
python -c 'import requests'
124+
```
125+
126+
If not running on Windows, make sure `msiextract` is also on your PATH. This is typically part
127+
of an `msitools` package.
128+
```sh
129+
apt install msitools # Or equivalent
130+
msiextract --version
126131
```
127132

128-
See the [readme](https://github.com/bl-sdk/common_cmake/blob/master/explicit_python/Readme.md)
129-
for more advanced details.
133+
See the explicit python [readme](https://github.com/bl-sdk/common_cmake/blob/master/explicit_python/Readme.md)
134+
for a few extra details.
130135

131136
3. (OPTIONAL) Copy `postbuild.template`, and edit it to copy files to your game install directories.
132137

@@ -140,8 +145,8 @@ To build:
140145
want these:
141146
```
142147
python3.dll
143-
python311.dll
144-
python311.zip
148+
python3<version>.dll
149+
python3<version>.zip
145150
```
146151

147152
A CMake install will copy these files, as well as several other useful libraries, to the install

0 commit comments

Comments
 (0)