Skip to content

Commit

Permalink
Add fairplay module
Browse files Browse the repository at this point in the history
  • Loading branch information
tishion committed May 26, 2023
1 parent 3bd123a commit fae2ecc
Show file tree
Hide file tree
Showing 15 changed files with 802 additions and 441 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build on Android

on:
push:
branches: [master]
branches: [main]
pull_request:
branches: [master]
branches: [main]

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
Expand All @@ -22,7 +22,7 @@ jobs:
- name: Checkout Source
uses: actions/checkout@v2
with:
submodules: 'true'
submodules: 'false'

- name: Set up our JDK environment
uses: actions/setup-java@v3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build on iOS

on:
push:
branches: [master]
branches: [main]
pull_request:
branches: [master]
branches: [main]

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
Expand All @@ -22,12 +22,12 @@ jobs:
- name: Checkout Source
uses: actions/checkout@v2
with:
submodules: 'true'
submodules: 'false'

- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: cmake -G "Xcode" -B ${{github.workspace}}/build -DBUILD_APS_DEMO=FALSE -DPLATFORM=OS -DDEPLOYMENT_TARGET=9.0 -DENABLE_ARC=FALSE -DENABLE_BITCODE=FALSE -DENABLE_VISIBILITY=FALSE -DENABLE_STRICT_TRY_COMPILE=FALSE -DCMAKE_TOOLCHAIN_FILE=cmake/ios.toolchain.cmake
run: cmake -G "Xcode" -B ${{github.workspace}}/build -DBUILD_APS_DEMO=FALSE -DPLATFORM=OS64 -DDEPLOYMENT_TARGET=11.0 -DENABLE_ARC=FALSE -DENABLE_BITCODE=FALSE -DENABLE_VISIBILITY=FALSE -DENABLE_STRICT_TRY_COMPILE=FALSE -DCMAKE_TOOLCHAIN_FILE=cmake/ios.toolchain.cmake

- name: Build
# Build your program with the given configuration
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build on Linux

on:
push:
branches: [master]
branches: [main]
pull_request:
branches: [master]
branches: [main]

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
Expand All @@ -22,7 +22,7 @@ jobs:
- name: Checkout Source
uses: actions/checkout@v2
with:
submodules: 'true'
submodules: 'false'

- name: Install libavahi
run: sudo apt-get install libavahi-compat-libdnssd-dev
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build on macOS

on:
push:
branches: [master]
branches: [main]
pull_request:
branches: [master]
branches: [main]

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
Expand All @@ -22,7 +22,7 @@ jobs:
- name: Checkout Source
uses: actions/checkout@v2
with:
submodules: 'true'
submodules: 'false'

- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build on Windows

on:
push:
branches: [master]
branches: [main]
pull_request:
branches: [master]
branches: [main]

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
Expand All @@ -22,7 +22,7 @@ jobs:
- name: Checkout Source
uses: actions/checkout@v2
with:
submodules: 'true'
submodules: 'false'

- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "third-party/fairplay/details"]
path = third-party/fairplay/details
url = https://github.com/air-display/fairplay.git
Loading

0 comments on commit fae2ecc

Please sign in to comment.