forked from Vhonowslend/StreamFX-Public
-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathbuild.py
152 lines (127 loc) · 6.49 KB
/
build.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# Copyright (C) 2023 XoXFaby
import requests
import os
import subprocess
import traceback
import shutil
import zipfile
def clone_repository(github_url, subfolder_name):
folderpath = os.path.join("temp", subfolder_name)
subprocess.run(['git', 'clone', '--recursive',
github_url, folderpath], check=True)
def build(*paths):
llvmpath = ""
obssourcepath = os.path.abspath("temp/obs-streamfx/third-party/obs-studio")
obsbuildpath = os.path.abspath("temp/obs-streamfx/build/libobs")
obsinstallpath = os.path.abspath("temp/obs-streamfx/build/libobs/install")
fxsourcepath = os.path.abspath("temp/obs-streamfx/")
fxbuildpath = os.path.abspath("temp/obs-streamfx/build/fx")
fxinstallpath = os.path.abspath("temp/obs-streamfx/build/fx/install")
packagebuildpath = os.path.abspath("temp/obs-streamfx/build/package")
#cmake -S "$ROOT/third-party/obs-studio" -B "$ROOT/build/obs" -G "Visual Studio 17 2022" -A x64 -DCMAKE_SYSTEM_VERSION="10.0.20348.0" -DCMAKE_BUILD_TYPE="Release" -DCMAKE_INSTALL_PREFIX="$ROOT/build/obs/install" -DENABLE_PLUGINS=OFF -DENABLE_UI=OFF -DENABLE_SCRIPTING=OFF -DCMAKE_PREFIX_PATH="$OBS;$OBS_QT6"
subprocess.run(['cmake',
'-S', obssourcepath,
'-B', obsbuildpath,
'-G', 'Visual Studio 17 2022',
'-A', 'x64',
'-DCMAKE_SYSTEM_VERSION="10.0.20348.0"',
'-DCMAKE_BUILD_TYPE="Release"',
f'-DCMAKE_INSTALL_PREFIX={obsinstallpath}',
'-DENABLE_PLUGINS=OFF',
'-DENABLE_UI=OFF',
'-DENABLE_SCRIPTING=OFF',
f'-DCMAKE_PREFIX_PATH={";".join(paths)}"',
"-Wno-dev"
])
#cmake --build "$ROOT/build/obs" --config Release --target obs-frontend-api
subprocess.run(['cmake', '--build', obsbuildpath, '--config Release', '--target obs-frontend-api'])
#cmake --install "$ROOT/build/obs" --config Release --component obs_libraries
subprocess.run(['cmake', '--install', obsbuildpath,
'--config Release', '--component obs_libraries'])
#cmake -S "$ROOT" -B "$ROOT/build/ci" -G "Visual Studio 17 2022" -A x64 -DCMAKE_SYSTEM_VERSION="10.0.20348.0" -DCMAKE_BUILD_TYPE="Release" -DCMAKE_INSTALL_PREFIX="$ROOT/build/ci/install"
#-DPACKAGE_NAME="streamfx-windows" -DPACKAGE_PREFIX="$ROOT/build/package"
# -DENABLE_CLANG=TRUE -DCLANG_PATH="$LLVM" -DENABLE_PROFILING=ON -Dlibobs_DIR="$ROOT/build/obs/install"
# -DQt_DIR="$OBS_QT6" -DFFmpeg_DIR="$OBS" -DCURL_DIR="$OBS". $LLVM
subprocess.run(['cmake',
'-S', fxsourcepath,
'-B', fxbuildpath,
'-G', 'Visual Studio 17 2022',
'-A', 'x64',
'-DCMAKE_SYSTEM_VERSION="10.0.20348.0"',
'-DCMAKE_BUILD_TYPE="Release"',
f'-DCMAKE_INSTALL_PREFIX={fxinstallpath}',
'-DPACKAGE_NAME="streamfx-windows"',
f'-DPACKAGE_PREFIX={packagebuildpath}',
'-DENABLE_CLANG=TRUE',
#f'-DCLANG_PATH={llvmpath}',
"-DENABLE_PROFILING=ON",
f"-Dlibobs_DIR={obsinstallpath}",
f"-DFFmpeg_DIR={paths[0]}",
f"-DCURL_DIR={paths[0]}",
f"-DQt_DIR={paths[1]}",
"-Wno-dev"
])
#cmake --build "$ROOT/build/ci" --config RelWithDebInfo --target install
subprocess.run(['cmake', '--build', fxbuildpath,
'--config RelWithDebInfo', '--target install'])
inno = "C:\Program Files (x86)\Inno Setup 6\ISCC.exe"
installerpath = os.path.abspath("temp/obs-streamfx/build/fx/installer.iss")
#& "$INNO" /V10 "$ROOT\build\ci\"
subprocess.run([inno, "/V10", installerpath])
def download_assets(github_user, github_repo, release_tag=None, filename=None, filenames=None):
if release_tag:
api_url = f'https://api.github.com/repos/{github_user}/{github_repo}/releases/tags/{release_tag}'
else:
api_url = f'https://api.github.com/repos/{github_user}/{github_repo}/releases/latest'
response = requests.get(api_url)
if response.status_code == 200:
release_info = response.json()
tag_name = release_info['tag_name']
fileurls = []
formatted_filenames = []
if filename:
formatted_filenames.append(filename.format(tag=tag_name))
if filenames:
for filename in filenames:
formatted_filenames.append(filename.format(tag=tag_name))
for asset in release_info['assets']:
if asset['name'] in formatted_filenames:
fileurls.append(
(asset['name'], asset['browser_download_url']))
for filename, asset_url in fileurls:
filepath = os.path.join("temp", filename)
if (os.path.exists(filepath)):
print(f"Skipping {filename} because it already exists.")
else:
with open(filepath, 'wb') as file:
print(f"Downloading {filename}")
fileresponse = requests.get(asset_url)
fileresponse.raise_for_status()
file.write(fileresponse.content)
if filename.endswith(".zip"):
with zipfile.ZipFile(os.path.abspath(
filepath), 'r') as zip_ref:
zip_ref.extractall(filepath[:-4])
return tag_name
else:
response.raise_for_status()
if __name__ == "__main__":
github_url = 'https://github.com/xoxfaby/obs-StreamFX.git'
subfolder_name = 'obs-streamfx'
try:
if(os.path.exists("temp")):
print("Clearing old temp folder.")
#shutil.rmtree("temp")
#realos.makedirs("temp")
try:
clone_repository(github_url, subfolder_name)
except: pass
tag = download_assets("obsproject", "obs-deps", release_tag="2023-04-12",
filenames=["windows-deps-{tag}-x64.zip",
"windows-deps-qt6-{tag}-x64-Debug.zip"])
depspath = os.path.abspath( f"temp/windows-deps-{tag}-x64")
qtpath = os.path.abspath(f"temp/windows-deps-qt6-{tag}-x64-Debug")
build(depspath, qtpath)
#shutil.rmtree("temp")
except Exception as e:
traceback.print_exc()