mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-01-11 18:41:14 +00:00
update
This commit is contained in:
parent
f000350b68
commit
f8bb77812b
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@ -46,7 +46,7 @@ jobs:
|
||||
- { name: 'iOS', os: 'macos-15', generator: 'Xcode', dx5: false, config: false, brew: true, werror: true, clang-tidy: false, cmake-args: '-DCMAKE_SYSTEM_NAME=iOS', ios: true }
|
||||
- { name: 'Emscripten', os: 'ubuntu-latest', generator: 'Ninja', dx5: false, config: false, emsdk: true, werror: true, clang-tidy: false, cmake-wrapper: 'emcmake' }
|
||||
- { name: 'Nintendo 3DS', os: 'ubuntu-latest', generator: 'Ninja', dx5: false, config: false, n3ds: true, werror: true, clang-tidy: false, container: 'devkitpro/devkitarm:latest', cmake-args: '-DCMAKE_TOOLCHAIN_FILE=/opt/devkitpro/cmake/3DS.cmake' }
|
||||
- { name: 'Nintendo Wii U', os: 'ubuntu-latest', generator: 'Ninja', dx5: false, config: false, wiiu: true, werror: false, clang-tidy: false, container: 'devkitpro/devkitppc:latest', cmake-args: '-DCMAKE_TOOLCHAIN_FILE=/opt/devkitpro/cmake/devkitPPC.cmake -DCMAKE_PREFIX_PATH=/opt/devkitpro/devkitPPC/powerpc-eabi/lib/libstdc++.a', sdl2: true }
|
||||
- { name: 'Nintendo Wii U', os: 'ubuntu-latest', generator: 'Ninja', dx5: false, config: false, wiiu: true, werror: false, clang-tidy: false, container: 'devkitpro/devkitppc:latest', cmake-args: '-DCMAKE_TOOLCHAIN_FILE=/opt/devkitpro/cmake/WiiU.cmake -DCMAKE_PREFIX_PATH=/opt/devkitpro/devkitPPC/powerpc-eabi/lib/libstdc++.a', sdl2: true }
|
||||
- { name: 'Xbox One', os: 'windows-latest', generator: 'Visual Studio 17 2022', dx5: false, config: false, msvc: true, werror: false, clang-tidy: false, vc-arch: 'amd64', cmake-args: '-DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION=10.0.26100.0', xbox-one: true}
|
||||
- { name: 'Android', os: 'ubuntu-latest', generator: 'Ninja', dx5: false, config: false, android: true, werror: true, clang-tidy: false,}
|
||||
steps:
|
||||
@ -228,10 +228,10 @@ jobs:
|
||||
if: ${{ matrix.wiiu }}
|
||||
run: |
|
||||
mkdir -p build/dist
|
||||
mv build/*.elf packaging/wiiu/
|
||||
mv packaging/wiiu/ build/dist/
|
||||
mv build/*.rpx packaging/wiiu/Legacy/
|
||||
mv packaging/wiiu/Legacy/ build/dist/
|
||||
cd build/dist
|
||||
mv wiiu isle-U
|
||||
mv Legacy isle-U
|
||||
|
||||
- name: Package (Android)
|
||||
if: ${{ matrix.android }}
|
||||
|
||||
@ -936,11 +936,9 @@ if(WINDOWS_STORE)
|
||||
PATTERN "*/*.msixbundle")
|
||||
endif()
|
||||
if(WIIU)
|
||||
# litte test commenting these out
|
||||
wut_create_rpx(isle)
|
||||
|
||||
# wut_create_rpx(isle)
|
||||
|
||||
# install(FILES "$<TARGET_FILE_DIR:isle>/isle.rpx" DESTINATION "${CMAKE_INSTALL_BINDIR}")
|
||||
install(FILES "$<TARGET_FILE_DIR:isle>/isle.rpx" DESTINATION "${CMAKE_INSTALL_BINDIR}")
|
||||
if(WIIU_WUHB)
|
||||
|
||||
endif()
|
||||
|
||||
@ -294,6 +294,12 @@ void IsleApp::SetupVideoFlags(
|
||||
}
|
||||
}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
SDL_AppResult SDL_AppInit(void** appstate, int argc, char** argv)
|
||||
{
|
||||
*appstate = NULL;
|
||||
|
||||
|
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.5 KiB |
Loading…
Reference in New Issue
Block a user