mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-30 08:50:33 +00:00
Merge pull request #16436 from hrydgard/basic-vr-ci
Add basic CI support for build-testing the Android-based VR build.
This commit is contained in:
commit
b7a594ed94
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
@ -151,6 +151,18 @@ jobs:
|
||||
cxx: clang++
|
||||
args: cd android && ./ab.sh -j2 APP_ABI=x86_64 UNITTEST=1 HEADLESS=1
|
||||
id: android-x86_64
|
||||
- os: ubuntu-latest
|
||||
extra: android
|
||||
cc: clang
|
||||
cxx: clang++
|
||||
args: cd android && ./ab.sh -j2 APP_ABI=arm64-v8a OPENXR=1 OPENXR_PLATFORM_QUEST=1
|
||||
id: android-vr-quest
|
||||
- os: ubuntu-latest
|
||||
extra: android
|
||||
cc: clang
|
||||
cxx: clang++
|
||||
args: cd android && ./ab.sh -j2 APP_ABI=arm64-v8a OPENXR=1 OPENXR_PLATFORM_PICO=1
|
||||
id: android-vr-pico
|
||||
- os: ubuntu-latest
|
||||
extra: android
|
||||
cc: clang
|
||||
|
@ -739,6 +739,18 @@ ifeq ($(HEADLESS),1)
|
||||
include $(BUILD_EXECUTABLE)
|
||||
endif
|
||||
|
||||
ifeq ($(OPENXR),1)
|
||||
LOCAL_CFLAGS += -DOPENXR
|
||||
endif
|
||||
|
||||
ifeq ($(OPENXR_PLATFORM_QUEST),1)
|
||||
LOCAL_CFLAGS += -DOPENXR_PLATFORM_QUEST
|
||||
endif
|
||||
|
||||
ifeq ($(OPENXR_PLATFORM_PICO),1)
|
||||
LOCAL_CFLAGS += -DOPENXR_PLATFORM_PICO
|
||||
endif
|
||||
|
||||
ifeq ($(UNITTEST),1)
|
||||
include $(CLEAR_VARS)
|
||||
include $(LOCAL_PATH)/Locals.mk
|
||||
|
Loading…
Reference in New Issue
Block a user