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
# required to fetch internal or private CodeQL packs
36
-
packages: read
37
-
38
-
# only required for workflows in private repositories
39
-
actions: read
40
-
contents: read
41
27
42
28
strategy:
43
29
fail-fast: false
@@ -57,7 +43,7 @@ jobs:
57
43
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
58
44
steps:
59
45
- name: Checkout repository
60
-
uses: actions/checkout@v4
46
+
uses: actions/checkout@v6.0.2
61
47
62
48
# Add any setup steps before running the `github/codeql-action/init` action.
63
49
# This includes steps like installing compilers or runtimes (`actions/setup-node`
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -156,7 +156,7 @@ project(example_project LANGUAGES CXX)
156
156
157
157
include(FetchContent)
158
158
FetchContent_Declare(bmx
159
-
GIT_REPOSITORY "https://github.com/bbc/bmx"
159
+
GIT_REPOSITORY "https://github.com/ebu/bmx"
160
160
GIT_TAG "origin/main"
161
161
)
162
162
FetchContent_MakeAvailable(bmx)
@@ -240,7 +240,7 @@ This example runs `bmxtranswrap` from input `./sources/in.mxf` to output `./dest
240
240
241
241
## Source and Binary Distributions
242
242
243
-
Source distributions, including dependencies, and binaries are made available in the [Releases](https://github.com/bbc/bmx/releases) on GitHub. Older distributions can be found on [SourceForge](https://sourceforge.net/projects/bmxlib/files/).
243
+
Source distributions, including dependencies, and binaries are made available in the [Releases](https://github.com/ebu/bmx/releases) on GitHub. Older distributions can be found on [SourceForge](https://sourceforge.net/projects/bmxlib/files/).
244
244
245
245
Source and binary distributions are generally only created when a new feature is required for creating standard compliant sample files for example, or when a release hasn't been made for a long time.
Copy file name to clipboardExpand all lines: cmake/options.cmake
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,9 @@ if(UNIX)
41
41
elseif(MSVC)
42
42
# Shared library currently not supported
43
43
set(BUILD_SHARED_LIBSOFFCACHEBOOL"Build using shared libraries")
44
+
45
+
# Option to build expat from source in deps/ or from the git repo
46
+
option(BMX_BUILD_EXPAT_SOURCE"Build expat from source"ON)
44
47
45
48
# Option to set to use the runtime
46
49
set(BMX_SET_MSVC_RUNTIME "MD"CACHESTRING"Set MSVC debug/release runtime to 'MD' (MultiThreadedDLL), 'MT' (MultiThreaded) or 'default' (use the default)")
0 commit comments