mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-22 10:42:29 +01:00
Update to latest vcpkg
Add libxkbcommon for compiling shader Fix SysInfo not available on osx and linux
This commit is contained in:
parent
f0b8c692c9
commit
5c138fa8d4
@ -146,7 +146,7 @@ build:linux_release:
|
||||
- apt update -y
|
||||
# Otherwise libglib2 needs interaction
|
||||
- export DEBIAN_FRONTEND=noninteractive
|
||||
- apt install mesa-common-dev curl zip unzip tar git pkg-config apt-transport-https ca-certificates gnupg software-properties-common wget software-properties-common wget python3-pip build-essential libgl1-mesa-dev lld ninja-build cmake -y
|
||||
- apt install mesa-common-dev libxkbcommon-* curl zip unzip tar git pkg-config apt-transport-https ca-certificates gnupg software-properties-common wget software-properties-common wget python3-pip build-essential libgl1-mesa-dev lld ninja-build cmake -y
|
||||
- pip3 install -U pip
|
||||
- pip3 install aqtinstall
|
||||
- aqt install-qt -O ../aqt linux desktop $QT_VERSION gcc_64 -m all
|
||||
@ -260,7 +260,7 @@ release:linux_steam:
|
||||
- apt update -y
|
||||
# Otherwise libglib2 needs interaction
|
||||
- export DEBIAN_FRONTEND=noninteractive
|
||||
- apt install mesa-common-dev curl zip unzip tar git pkg-config apt-transport-https ca-certificates gnupg software-properties-common wget software-properties-common wget python3-pip build-essential libgl1-mesa-dev lld ninja-build cmake -y
|
||||
- apt install mesa-common-dev libxkbcommon-* curl zip unzip tar git pkg-config apt-transport-https ca-certificates gnupg software-properties-common wget software-properties-common wget python3-pip build-essential libgl1-mesa-dev lld ninja-build cmake -y
|
||||
- pip3 install -U pip
|
||||
- pip3 install aqtinstall
|
||||
- aqt install-qt -O ../aqt linux desktop $QT_VERSION gcc_64 -m all
|
||||
@ -295,7 +295,7 @@ release:linux_standalone:
|
||||
- apt update -y
|
||||
# Otherwise libglib2 needs interaction
|
||||
- export DEBIAN_FRONTEND=noninteractive
|
||||
- apt install mesa-common-dev curl zip unzip tar git pkg-config apt-transport-https ca-certificates gnupg software-properties-common wget software-properties-common wget python3-pip build-essential libgl1-mesa-dev lld ninja-build cmake -y
|
||||
- apt install mesa-common-dev libxkbcommon-* curl zip unzip tar git pkg-config apt-transport-https ca-certificates gnupg software-properties-common wget software-properties-common wget python3-pip build-essential libgl1-mesa-dev lld ninja-build cmake -y
|
||||
- pip3 install -U pip
|
||||
- pip3 install aqtinstall
|
||||
- aqt install-qt -O ../aqt linux desktop $QT_VERSION gcc_64 -m all
|
||||
|
@ -9,6 +9,7 @@
|
||||
|
||||
#if defined(Q_OS_WIN)
|
||||
#include "src/winwindow.h"
|
||||
Q_IMPORT_QML_PLUGIN(ScreenPlaySysInfoPlugin)
|
||||
#elif defined(Q_OS_LINUX)
|
||||
#include "src/linuxwindow.h"
|
||||
#elif defined(Q_OS_OSX)
|
||||
@ -16,7 +17,6 @@
|
||||
#endif
|
||||
|
||||
Q_IMPORT_QML_PLUGIN(ScreenPlayWeatherPlugin)
|
||||
Q_IMPORT_QML_PLUGIN(ScreenPlaySysInfoPlugin)
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
|
@ -5,8 +5,11 @@
|
||||
|
||||
#include "src/widgetwindow.h"
|
||||
|
||||
Q_IMPORT_QML_PLUGIN(ScreenPlayWeatherPlugin)
|
||||
#if defined(Q_OS_WIN)
|
||||
Q_IMPORT_QML_PLUGIN(ScreenPlaySysInfoPlugin)
|
||||
#endif
|
||||
|
||||
Q_IMPORT_QML_PLUGIN(ScreenPlayWeatherPlugin)
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
|
@ -7,7 +7,7 @@ from pathlib import Path
|
||||
from execute_util import execute
|
||||
from download_ffmpeg import download_prebuild_ffmpeg
|
||||
|
||||
vcpkg_version = "1085a57da0725c19e19586025438e8c16f34c890" # Master 31.12.2021
|
||||
vcpkg_version = "2ac61f8" # Master 23.04.2022
|
||||
|
||||
vcpkg_packages_list = [
|
||||
"openssl",
|
||||
|
Loading…
Reference in New Issue
Block a user