You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-14Lines changed: 2 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ Windows and macOS dependency downloads are configured in the `buildspec.json` fi
52
52
*`obs-studio`: Version of OBS Studio to build plugin with (needed for `libobs` and `obs-frontend-api`)
53
53
*`prebuilt`: Prebuilt OBS Studio dependencies
54
54
*`qt6`: Prebuilt version of Qt6 as used by OBS Studio
55
-
*`tools`: Contains additional build tools used by CI
55
+
*`tools`: Contains additional build tools used by CI (Optional)
56
56
57
57
The values should be kept in sync with OBS Studio releases and the `buildspec.json` file in use by the main project to ensure that the plugin is developed and built in sync with its target environment.
58
58
@@ -68,7 +68,7 @@ Linux dependencies need to be resolved using the package management tools approp
68
68
*`pkg-config`
69
69
* Build Dependencies:
70
70
*`build-essential`
71
-
*`libobs-dev`
71
+
*`obs-studio`
72
72
* Qt6 Dependencies:
73
73
*`qt6-base-dev`
74
74
*`libqt6svg6-dev`
@@ -80,36 +80,24 @@ To create a build configuration, `cmake` needs to be installed on the system. Th
80
80
81
81
*`macos`
82
82
* Universal architecture (supports Intel-based CPUs as Apple Silicon)
83
-
* Defaults to Qt version `6`
84
83
* Defaults to macOS deployment target `11.0`
85
84
*`macos-ci`
86
85
* Inherits from `macos`
87
86
* Enables compile warnings as error
88
87
*`windows-x64`
89
88
* Windows 64-bit architecture
90
-
* Defaults to Qt version `6`
91
89
* Defaults to Visual Studio 17 2022
92
90
* Defaults to Windows SDK version `10.0.18363.657`
93
91
*`windows-ci-x64`
94
92
* Inherits from `windows-x64`
95
93
* Enables compile warnings as error
96
94
*`linux-x86_64`
97
95
* Linux x86_64 architecture
98
-
* Defaults to Qt version `6`
99
96
* Defaults to Ninja as build tool
100
97
* Defaults to `RelWithDebInfo` build configuration
101
98
*`linux-ci-x86_64`
102
99
* Inherits from `linux-x86_64`
103
100
* Enables compile warnings as error
104
-
*`linux-aarch64`
105
-
* Provided as an experimental preview feature
106
-
* Linux aarch64 (ARM64) architecture
107
-
* Defaults to Qt version `6`
108
-
* Defaults to Ninja as build tool
109
-
* Defaults to `RelWithDebInfo` build configuration
110
-
*`linux-ci-aarch64`
111
-
* Inherits from `linux-aarch64`
112
-
* Enables compile warnings as error
113
101
114
102
Presets can be either specified on the command line (`cmake --preset <PRESET>`) or via the associated select field in the CMake Windows GUI. Only presets appropriate for the current build host are available for selection.
0 commit comments