mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-05 06:33:57 +02:00
Build most dependencies for Windows on ARM.
This commit is contained in:
parent
e83704982f
commit
2412183b83
4 changed files with 138 additions and 27 deletions
|
@ -1847,9 +1847,14 @@ if (WIN32)
|
||||||
/DELAYLOAD:propsys.dll
|
/DELAYLOAD:propsys.dll
|
||||||
)
|
)
|
||||||
if (QT_VERSION GREATER 6)
|
if (QT_VERSION GREATER 6)
|
||||||
|
if (NOT build_winarm)
|
||||||
|
target_link_options(Telegram PRIVATE
|
||||||
|
/DELAYLOAD:API-MS-Win-EventLog-Legacy-l1-1-0.dll
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
target_link_options(Telegram
|
target_link_options(Telegram
|
||||||
PRIVATE
|
PRIVATE
|
||||||
/DELAYLOAD:API-MS-Win-EventLog-Legacy-l1-1-0.dll
|
|
||||||
/DELAYLOAD:API-MS-Win-Core-Console-l1-1-0.dll
|
/DELAYLOAD:API-MS-Win-Core-Console-l1-1-0.dll
|
||||||
/DELAYLOAD:API-MS-Win-Core-Fibers-l2-1-0.dll
|
/DELAYLOAD:API-MS-Win-Core-Fibers-l2-1-0.dll
|
||||||
/DELAYLOAD:API-MS-Win-Core-Fibers-l2-1-1.dll
|
/DELAYLOAD:API-MS-Win-Core-Fibers-l2-1-1.dll
|
||||||
|
@ -1866,7 +1871,7 @@ if (WIN32)
|
||||||
/DELAYLOAD:API-MS-Win-Core-WinRT-Error-l1-1-0.dll
|
/DELAYLOAD:API-MS-Win-Core-WinRT-Error-l1-1-0.dll
|
||||||
/DELAYLOAD:API-MS-Win-Core-WinRT-String-l1-1-0.dll
|
/DELAYLOAD:API-MS-Win-Core-WinRT-String-l1-1-0.dll
|
||||||
/DELAYLOAD:API-MS-Win-Security-CryptoAPI-l1-1-0.dll
|
/DELAYLOAD:API-MS-Win-Security-CryptoAPI-l1-1-0.dll
|
||||||
/DELAYLOAD:API-MS-Win-Shcore-Scaling-l1-1-1.dll
|
# /DELAYLOAD:API-MS-Win-Shcore-Scaling-l1-1-1.dll # We shadowed GetDpiForMonitor
|
||||||
/DELAYLOAD:authz.dll # Authz.lib
|
/DELAYLOAD:authz.dll # Authz.lib
|
||||||
/DELAYLOAD:comdlg32.dll
|
/DELAYLOAD:comdlg32.dll
|
||||||
/DELAYLOAD:dwrite.dll # DWrite.lib
|
/DELAYLOAD:dwrite.dll # DWrite.lib
|
||||||
|
|
|
@ -26,7 +26,7 @@ if win and not 'Platform' in os.environ:
|
||||||
|
|
||||||
win32 = win and (os.environ['Platform'] == 'x86')
|
win32 = win and (os.environ['Platform'] == 'x86')
|
||||||
win64 = win and (os.environ['Platform'] == 'x64')
|
win64 = win and (os.environ['Platform'] == 'x64')
|
||||||
winarm = win and (os.environ['Platform'] == 'arm')
|
winarm = win and (os.environ['Platform'] == 'arm64')
|
||||||
|
|
||||||
arch = ''
|
arch = ''
|
||||||
if win32:
|
if win32:
|
||||||
|
@ -114,6 +114,12 @@ elif (win64):
|
||||||
'X8664': 'x64',
|
'X8664': 'x64',
|
||||||
'WIN32X64': 'x64',
|
'WIN32X64': 'x64',
|
||||||
})
|
})
|
||||||
|
elif (winarm):
|
||||||
|
environment.update({
|
||||||
|
'SPECIAL_TARGET': 'winarm',
|
||||||
|
'X8664': 'ARM64',
|
||||||
|
'WIN32X64': 'ARM64',
|
||||||
|
})
|
||||||
elif (mac):
|
elif (mac):
|
||||||
environment.update({
|
environment.update({
|
||||||
'SPECIAL_TARGET': 'mac',
|
'SPECIAL_TARGET': 'mac',
|
||||||
|
@ -239,6 +245,8 @@ def filterByPlatform(commands):
|
||||||
inscope = True
|
inscope = True
|
||||||
if win64 and 'win64' in scopes:
|
if win64 and 'win64' in scopes:
|
||||||
inscope = True
|
inscope = True
|
||||||
|
if winarm and 'winarm' in scopes:
|
||||||
|
inscope = True
|
||||||
if mac and 'mac' in scopes:
|
if mac and 'mac' in scopes:
|
||||||
inscope = True
|
inscope = True
|
||||||
# if linux and 'linux' in scopes:
|
# if linux and 'linux' in scopes:
|
||||||
|
@ -449,7 +457,7 @@ if customRunCommand:
|
||||||
stage('patches', """
|
stage('patches', """
|
||||||
git clone https://github.com/desktop-app/patches.git
|
git clone https://github.com/desktop-app/patches.git
|
||||||
cd patches
|
cd patches
|
||||||
git checkout e0cdca2e79
|
git checkout 514332f808
|
||||||
""")
|
""")
|
||||||
|
|
||||||
stage('msys64', """
|
stage('msys64', """
|
||||||
|
@ -502,9 +510,9 @@ mac:
|
||||||
if not mac or 'build-stackwalk' in options:
|
if not mac or 'build-stackwalk' in options:
|
||||||
stage('gyp', """
|
stage('gyp', """
|
||||||
win:
|
win:
|
||||||
git clone https://chromium.googlesource.com/external/gyp
|
git clone https://github.com/desktop-app/gyp.git
|
||||||
cd gyp
|
cd gyp
|
||||||
git checkout 9d09418933
|
git checkout 618958fdbe
|
||||||
mac:
|
mac:
|
||||||
python3 -m pip install \\
|
python3 -m pip install \\
|
||||||
--ignore-installed \\
|
--ignore-installed \\
|
||||||
|
@ -610,6 +618,8 @@ win32:
|
||||||
perl Configure no-shared no-tests debug-VC-WIN32 /FS
|
perl Configure no-shared no-tests debug-VC-WIN32 /FS
|
||||||
win64:
|
win64:
|
||||||
perl Configure no-shared no-tests debug-VC-WIN64A /FS
|
perl Configure no-shared no-tests debug-VC-WIN64A /FS
|
||||||
|
winarm:
|
||||||
|
perl Configure no-shared no-tests debug-VC-WIN64-ARM /FS
|
||||||
win:
|
win:
|
||||||
jom -j%NUMBER_OF_PROCESSORS%
|
jom -j%NUMBER_OF_PROCESSORS%
|
||||||
mkdir out.dbg
|
mkdir out.dbg
|
||||||
|
@ -624,6 +634,8 @@ win32_release:
|
||||||
perl Configure no-shared no-tests VC-WIN32 /FS
|
perl Configure no-shared no-tests VC-WIN32 /FS
|
||||||
win64_release:
|
win64_release:
|
||||||
perl Configure no-shared no-tests VC-WIN64A /FS
|
perl Configure no-shared no-tests VC-WIN64A /FS
|
||||||
|
winarm_release:
|
||||||
|
perl Configure no-shared no-tests VC-WIN64-ARM /FS
|
||||||
win_release:
|
win_release:
|
||||||
jom -j%NUMBER_OF_PROCESSORS%
|
jom -j%NUMBER_OF_PROCESSORS%
|
||||||
mkdir out
|
mkdir out
|
||||||
|
@ -720,18 +732,32 @@ mac:
|
||||||
make install
|
make install
|
||||||
""")
|
""")
|
||||||
|
|
||||||
|
stage('gas-preprocessor', """
|
||||||
|
winarm:
|
||||||
|
git clone https://github.com/FFmpeg/gas-preprocessor
|
||||||
|
cd gas-preprocessor
|
||||||
|
echo @echo off > cpp.bat
|
||||||
|
echo cl %%%%%%** >> cpp.bat
|
||||||
|
""")
|
||||||
|
|
||||||
# Somehow in x86 Debug build dav1d crashes on AV1 10bpc videos.
|
# Somehow in x86 Debug build dav1d crashes on AV1 10bpc videos.
|
||||||
stage('dav1d', """
|
stage('dav1d', """
|
||||||
git clone -b 1.4.1 https://code.videolan.org/videolan/dav1d.git
|
git clone -b 1.4.1 https://code.videolan.org/videolan/dav1d.git
|
||||||
cd dav1d
|
cd dav1d
|
||||||
|
win32:
|
||||||
|
SET "TARGET=x86"
|
||||||
|
SET "DAV1D_ASM_DISABLE=-Denable_asm=false"
|
||||||
|
win64:
|
||||||
|
SET "TARGET=x86_64"
|
||||||
|
SET "DAV1D_ASM_DISABLE="
|
||||||
|
winarm:
|
||||||
|
SET "TARGET=aarch64"
|
||||||
|
SET "DAV1D_ASM_DISABLE="
|
||||||
|
SET "PATH_BACKUP_=%PATH%"
|
||||||
|
SET "PATH=%LIBS_DIR%\\gas-preprocessor;%PATH%"
|
||||||
|
echo armasm64 fails with 'syntax error in expression: tbnz x14, #4, 8f' as if this instruction is unknown/unsupported.
|
||||||
|
git revert --no-edit d503bb0ccaf104b2f13da0f092e09cc9411b3297
|
||||||
win:
|
win:
|
||||||
if "%X8664%" equ "x64" (
|
|
||||||
SET "TARGET=x86_64"
|
|
||||||
SET "DAV1D_ASM_DISABLE="
|
|
||||||
) else (
|
|
||||||
SET "TARGET=x86"
|
|
||||||
SET "DAV1D_ASM_DISABLE=-Denable_asm=false"
|
|
||||||
)
|
|
||||||
set FILE=cross-file.txt
|
set FILE=cross-file.txt
|
||||||
echo [binaries] > %FILE%
|
echo [binaries] > %FILE%
|
||||||
echo c = 'cl' >> %FILE%
|
echo c = 'cl' >> %FILE%
|
||||||
|
@ -756,6 +782,8 @@ release:
|
||||||
win:
|
win:
|
||||||
copy %LIBS_DIR%\\local\\lib\\libdav1d.a %LIBS_DIR%\\local\\lib\\dav1d.lib
|
copy %LIBS_DIR%\\local\\lib\\libdav1d.a %LIBS_DIR%\\local\\lib\\dav1d.lib
|
||||||
deactivate
|
deactivate
|
||||||
|
winarm:
|
||||||
|
SET "PATH=%PATH_BACKUP_%"
|
||||||
mac:
|
mac:
|
||||||
buildOneArch() {
|
buildOneArch() {
|
||||||
arch=$1
|
arch=$1
|
||||||
|
@ -781,6 +809,67 @@ mac:
|
||||||
lipo -create build.arm64/libdav1d.a build/libdav1d.a -output ${USED_PREFIX}/lib/libdav1d.a
|
lipo -create build.arm64/libdav1d.a build/libdav1d.a -output ${USED_PREFIX}/lib/libdav1d.a
|
||||||
""")
|
""")
|
||||||
|
|
||||||
|
stage('openh264', """
|
||||||
|
git clone -b v2.4.1 https://github.com/cisco/openh264.git
|
||||||
|
cd openh264
|
||||||
|
win32:
|
||||||
|
SET "TARGET=x86"
|
||||||
|
win64:
|
||||||
|
SET "TARGET=x86_64"
|
||||||
|
winarm:
|
||||||
|
SET "TARGET=aarch64"
|
||||||
|
SET "PATH_BACKUP_=%PATH%"
|
||||||
|
SET "PATH=%LIBS_DIR%\\gas-preprocessor;%PATH%"
|
||||||
|
win:
|
||||||
|
set FILE=cross-file.txt
|
||||||
|
echo [binaries] > %FILE%
|
||||||
|
echo c = 'cl' >> %FILE%
|
||||||
|
echo cpp = 'cl' >> %FILE%
|
||||||
|
echo ar = 'lib' >> %FILE%
|
||||||
|
echo windres = 'rc' >> %FILE%
|
||||||
|
echo [host_machine] >> %FILE%
|
||||||
|
echo system = 'windows' >> %FILE%
|
||||||
|
echo cpu_family = '%TARGET%' >> %FILE%
|
||||||
|
echo cpu = '%TARGET%' >> %FILE%
|
||||||
|
echo endian = 'little' >> %FILE%
|
||||||
|
|
||||||
|
depends:python/Scripts/activate.bat
|
||||||
|
%THIRDPARTY_DIR%\\python\\Scripts\\activate.bat
|
||||||
|
meson setup --cross-file %FILE% --prefix %LIBS_DIR%/local --default-library=static --buildtype=debug -Db_vscrt=mtd builddir-debug
|
||||||
|
meson compile -C builddir-debug
|
||||||
|
meson install -C builddir-debug
|
||||||
|
release:
|
||||||
|
meson setup --cross-file %FILE% --prefix %LIBS_DIR%/local --default-library=static --buildtype=release -Db_vscrt=mt builddir-release
|
||||||
|
meson compile -C builddir-release
|
||||||
|
meson install -C builddir-release
|
||||||
|
win:
|
||||||
|
copy %LIBS_DIR%\\local\\lib\\libopenh264.a %LIBS_DIR%\\local\\lib\\openh264.lib
|
||||||
|
deactivate
|
||||||
|
winarm:
|
||||||
|
SET "PATH=%PATH_BACKUP_%"
|
||||||
|
mac:
|
||||||
|
buildOneArch() {
|
||||||
|
arch=$1
|
||||||
|
folder=`pwd`/$2
|
||||||
|
|
||||||
|
meson setup \\
|
||||||
|
--cross-file ../patches/macos_meson_${arch}.txt \\
|
||||||
|
--prefix ${USED_PREFIX} \\
|
||||||
|
--default-library=static \\
|
||||||
|
--buildtype=minsize \\
|
||||||
|
${folder}
|
||||||
|
meson compile -C ${folder}
|
||||||
|
meson install -C ${folder}
|
||||||
|
|
||||||
|
mv ${USED_PREFIX}/lib/libopenh264.a ${folder}/libopenh264.a
|
||||||
|
}
|
||||||
|
|
||||||
|
buildOneArch arm64 build.arm64
|
||||||
|
buildOneArch x86_64 build
|
||||||
|
|
||||||
|
lipo -create build.arm64/libopenh264.a build/libopenh264.a -output ${USED_PREFIX}/lib/libopenh264.a
|
||||||
|
""")
|
||||||
|
|
||||||
stage('libavif', """
|
stage('libavif', """
|
||||||
git clone -b v1.0.4 https://github.com/AOMediaCodec/libavif.git
|
git clone -b v1.0.4 https://github.com/AOMediaCodec/libavif.git
|
||||||
cd libavif
|
cd libavif
|
||||||
|
@ -850,7 +939,7 @@ mac:
|
||||||
""")
|
""")
|
||||||
|
|
||||||
stage('libwebp', """
|
stage('libwebp', """
|
||||||
git clone -b v1.3.2 https://github.com/webmproject/libwebp.git
|
git clone -b v1.4.0 https://github.com/webmproject/libwebp.git
|
||||||
cd libwebp
|
cd libwebp
|
||||||
win:
|
win:
|
||||||
nmake /f Makefile.vc CFG=debug-static OBJDIR=out RTLIBCFG=static all
|
nmake /f Makefile.vc CFG=debug-static OBJDIR=out RTLIBCFG=static all
|
||||||
|
@ -1005,12 +1094,13 @@ win:
|
||||||
SET CHERE_INVOKING=enabled_from_arguments
|
SET CHERE_INVOKING=enabled_from_arguments
|
||||||
SET MSYS2_PATH_TYPE=inherit
|
SET MSYS2_PATH_TYPE=inherit
|
||||||
|
|
||||||
if "%X8664%" equ "x64" (
|
win32:
|
||||||
SET "TOOLCHAIN=x86_64-win64-vs17"
|
SET "TOOLCHAIN=x86-win32-vs17"
|
||||||
) else (
|
win64:
|
||||||
SET "TOOLCHAIN=x86-win32-vs17"
|
SET "TOOLCHAIN=x86_64-win64-vs17"
|
||||||
)
|
winarm:
|
||||||
|
SET "TOOLCHAIN=arm64-win64-vs17"
|
||||||
|
win:
|
||||||
depends:patches/build_libvpx_win.sh
|
depends:patches/build_libvpx_win.sh
|
||||||
bash --login ../patches/build_libvpx_win.sh
|
bash --login ../patches/build_libvpx_win.sh
|
||||||
|
|
||||||
|
@ -1097,12 +1187,19 @@ stage('ffmpeg', """
|
||||||
git clone -b n6.1.1 https://github.com/FFmpeg/FFmpeg.git ffmpeg
|
git clone -b n6.1.1 https://github.com/FFmpeg/FFmpeg.git ffmpeg
|
||||||
cd ffmpeg
|
cd ffmpeg
|
||||||
win:
|
win:
|
||||||
|
depends:patches/ffmpeg.patch
|
||||||
|
git apply ../patches/ffmpeg.patch
|
||||||
|
|
||||||
SET PATH_BACKUP_=%PATH%
|
SET PATH_BACKUP_=%PATH%
|
||||||
SET PATH=%ROOT_DIR%\\ThirdParty\\msys64\\usr\\bin;%PATH%
|
SET PATH=%ROOT_DIR%\\ThirdParty\\msys64\\usr\\bin;%PATH%
|
||||||
|
|
||||||
SET CHERE_INVOKING=enabled_from_arguments
|
SET CHERE_INVOKING=enabled_from_arguments
|
||||||
SET MSYS2_PATH_TYPE=inherit
|
SET MSYS2_PATH_TYPE=inherit
|
||||||
|
|
||||||
|
SET "ARCH_PARAM="
|
||||||
|
winarm:
|
||||||
|
SET "ARCH_PARAM=--arch=aarch64"
|
||||||
|
win:
|
||||||
depends:patches/build_ffmpeg_win.sh
|
depends:patches/build_ffmpeg_win.sh
|
||||||
bash --login ../patches/build_ffmpeg_win.sh
|
bash --login ../patches/build_ffmpeg_win.sh
|
||||||
|
|
||||||
|
@ -1319,11 +1416,12 @@ depends:patches/breakpad.diff
|
||||||
git clone -b release-1.11.0 https://github.com/google/googletest src/testing
|
git clone -b release-1.11.0 https://github.com/google/googletest src/testing
|
||||||
win:
|
win:
|
||||||
SET "PYTHONUTF8=1"
|
SET "PYTHONUTF8=1"
|
||||||
if "%X8664%" equ "x64" (
|
SET "FolderPostfix="
|
||||||
SET "FolderPostfix=_x64"
|
win64:
|
||||||
) else (
|
SET "FolderPostfix=_x64"
|
||||||
SET "FolderPostfix="
|
winarm:
|
||||||
)
|
SET "FolderPostfix=_ARM64"
|
||||||
|
win:
|
||||||
depends:python/Scripts/activate.bat
|
depends:python/Scripts/activate.bat
|
||||||
%THIRDPARTY_DIR%\\python\\Scripts\\activate.bat
|
%THIRDPARTY_DIR%\\python\\Scripts\\activate.bat
|
||||||
cd src\\client\\windows
|
cd src\\client\\windows
|
||||||
|
@ -1628,6 +1726,7 @@ win:
|
||||||
SET OPUS_PATH=$USED_PREFIX/include/opus
|
SET OPUS_PATH=$USED_PREFIX/include/opus
|
||||||
SET OPENSSL_PATH=$LIBS_DIR/openssl3/include
|
SET OPENSSL_PATH=$LIBS_DIR/openssl3/include
|
||||||
SET LIBVPX_PATH=$USED_PREFIX/include
|
SET LIBVPX_PATH=$USED_PREFIX/include
|
||||||
|
SET OPENH264_PATH=$USED_PREFIX/include
|
||||||
SET FFMPEG_PATH=$LIBS_DIR/ffmpeg
|
SET FFMPEG_PATH=$LIBS_DIR/ffmpeg
|
||||||
mkdir out
|
mkdir out
|
||||||
cd out
|
cd out
|
||||||
|
@ -1641,6 +1740,7 @@ win:
|
||||||
-DTG_OWT_OPENSSL_INCLUDE_PATH=$OPENSSL_PATH \
|
-DTG_OWT_OPENSSL_INCLUDE_PATH=$OPENSSL_PATH \
|
||||||
-DTG_OWT_OPUS_INCLUDE_PATH=$OPUS_PATH \
|
-DTG_OWT_OPUS_INCLUDE_PATH=$OPUS_PATH \
|
||||||
-DTG_OWT_LIBVPX_INCLUDE_PATH=$LIBVPX_PATH \
|
-DTG_OWT_LIBVPX_INCLUDE_PATH=$LIBVPX_PATH \
|
||||||
|
-DTG_OWT_OPENH264_INCLUDE_PATH=$OPENH264_PATH \
|
||||||
-DTG_OWT_FFMPEG_INCLUDE_PATH=$FFMPEG_PATH ../..
|
-DTG_OWT_FFMPEG_INCLUDE_PATH=$FFMPEG_PATH ../..
|
||||||
ninja
|
ninja
|
||||||
release:
|
release:
|
||||||
|
@ -1655,12 +1755,14 @@ release:
|
||||||
-DTG_OWT_OPENSSL_INCLUDE_PATH=$OPENSSL_PATH \
|
-DTG_OWT_OPENSSL_INCLUDE_PATH=$OPENSSL_PATH \
|
||||||
-DTG_OWT_OPUS_INCLUDE_PATH=$OPUS_PATH \
|
-DTG_OWT_OPUS_INCLUDE_PATH=$OPUS_PATH \
|
||||||
-DTG_OWT_LIBVPX_INCLUDE_PATH=$LIBVPX_PATH \
|
-DTG_OWT_LIBVPX_INCLUDE_PATH=$LIBVPX_PATH \
|
||||||
|
-DTG_OWT_OPENH264_INCLUDE_PATH=$OPENH264_PATH \
|
||||||
-DTG_OWT_FFMPEG_INCLUDE_PATH=$FFMPEG_PATH ../..
|
-DTG_OWT_FFMPEG_INCLUDE_PATH=$FFMPEG_PATH ../..
|
||||||
ninja
|
ninja
|
||||||
mac:
|
mac:
|
||||||
MOZJPEG_PATH=$USED_PREFIX/include
|
MOZJPEG_PATH=$USED_PREFIX/include
|
||||||
OPUS_PATH=$USED_PREFIX/include/opus
|
OPUS_PATH=$USED_PREFIX/include/opus
|
||||||
LIBVPX_PATH=$USED_PREFIX/include
|
LIBVPX_PATH=$USED_PREFIX/include
|
||||||
|
OPENH264_PATH=$USED_PREFIX/include
|
||||||
FFMPEG_PATH=$USED_PREFIX/include
|
FFMPEG_PATH=$USED_PREFIX/include
|
||||||
mkdir out
|
mkdir out
|
||||||
cd out
|
cd out
|
||||||
|
@ -1675,6 +1777,7 @@ mac:
|
||||||
-DTG_OWT_OPENSSL_INCLUDE_PATH=$LIBS_DIR/openssl3/include \
|
-DTG_OWT_OPENSSL_INCLUDE_PATH=$LIBS_DIR/openssl3/include \
|
||||||
-DTG_OWT_OPUS_INCLUDE_PATH=$OPUS_PATH \
|
-DTG_OWT_OPUS_INCLUDE_PATH=$OPUS_PATH \
|
||||||
-DTG_OWT_LIBVPX_INCLUDE_PATH=$LIBVPX_PATH \
|
-DTG_OWT_LIBVPX_INCLUDE_PATH=$LIBVPX_PATH \
|
||||||
|
-DTG_OWT_OPENH264_INCLUDE_PATH=$OPENH264_PATH \
|
||||||
-DTG_OWT_FFMPEG_INCLUDE_PATH=$FFMPEG_PATH ../..
|
-DTG_OWT_FFMPEG_INCLUDE_PATH=$FFMPEG_PATH ../..
|
||||||
ninja
|
ninja
|
||||||
cd ..
|
cd ..
|
||||||
|
@ -1689,6 +1792,7 @@ mac:
|
||||||
-DTG_OWT_OPENSSL_INCLUDE_PATH=$LIBS_DIR/openssl3/include \
|
-DTG_OWT_OPENSSL_INCLUDE_PATH=$LIBS_DIR/openssl3/include \
|
||||||
-DTG_OWT_OPUS_INCLUDE_PATH=$OPUS_PATH \
|
-DTG_OWT_OPUS_INCLUDE_PATH=$OPUS_PATH \
|
||||||
-DTG_OWT_LIBVPX_INCLUDE_PATH=$LIBVPX_PATH \
|
-DTG_OWT_LIBVPX_INCLUDE_PATH=$LIBVPX_PATH \
|
||||||
|
-DTG_OWT_OPENH264_INCLUDE_PATH=$OPENH264_PATH \
|
||||||
-DTG_OWT_FFMPEG_INCLUDE_PATH=$FFMPEG_PATH ../..
|
-DTG_OWT_FFMPEG_INCLUDE_PATH=$FFMPEG_PATH ../..
|
||||||
ninja
|
ninja
|
||||||
cd ..
|
cd ..
|
||||||
|
@ -1705,6 +1809,7 @@ release:
|
||||||
-DTG_OWT_OPENSSL_INCLUDE_PATH=$LIBS_DIR/openssl3/include \
|
-DTG_OWT_OPENSSL_INCLUDE_PATH=$LIBS_DIR/openssl3/include \
|
||||||
-DTG_OWT_OPUS_INCLUDE_PATH=$OPUS_PATH \
|
-DTG_OWT_OPUS_INCLUDE_PATH=$OPUS_PATH \
|
||||||
-DTG_OWT_LIBVPX_INCLUDE_PATH=$LIBVPX_PATH \
|
-DTG_OWT_LIBVPX_INCLUDE_PATH=$LIBVPX_PATH \
|
||||||
|
-DTG_OWT_OPENH264_INCLUDE_PATH=$OPENH264_PATH \
|
||||||
-DTG_OWT_FFMPEG_INCLUDE_PATH=$FFMPEG_PATH ../..
|
-DTG_OWT_FFMPEG_INCLUDE_PATH=$FFMPEG_PATH ../..
|
||||||
ninja
|
ninja
|
||||||
cd ..
|
cd ..
|
||||||
|
@ -1718,6 +1823,7 @@ release:
|
||||||
-DTG_OWT_OPENSSL_INCLUDE_PATH=$LIBS_DIR/openssl3/include \
|
-DTG_OWT_OPENSSL_INCLUDE_PATH=$LIBS_DIR/openssl3/include \
|
||||||
-DTG_OWT_OPUS_INCLUDE_PATH=$OPUS_PATH \
|
-DTG_OWT_OPUS_INCLUDE_PATH=$OPUS_PATH \
|
||||||
-DTG_OWT_LIBVPX_INCLUDE_PATH=$LIBVPX_PATH \
|
-DTG_OWT_LIBVPX_INCLUDE_PATH=$LIBVPX_PATH \
|
||||||
|
-DTG_OWT_OPENH264_INCLUDE_PATH=$OPENH264_PATH \
|
||||||
-DTG_OWT_FFMPEG_INCLUDE_PATH=$FFMPEG_PATH ../..
|
-DTG_OWT_FFMPEG_INCLUDE_PATH=$FFMPEG_PATH ../..
|
||||||
ninja
|
ninja
|
||||||
cd ..
|
cd ..
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 078006d29af0002e6cd8c61a405cdeaf65b37142
|
Subproject commit c1d6b0273653095b10b4d0f4f7c30b614b690fd5
|
2
cmake
2
cmake
|
@ -1 +1 @@
|
||||||
Subproject commit d50ff1a71e080e63f71c451f500a2f03f9d48539
|
Subproject commit 37d42a72255aabde49deafb02904f58f06f4a97d
|
Loading…
Add table
Reference in a new issue