mirror of
https://github.com/izzy2lost/WeeU.git
synced 2026-07-06 00:19:59 -07:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
88f63ca373 | ||
|
|
643ac57a30 | ||
|
|
4561a6929c | ||
|
|
8f674933d2 | ||
|
|
028b3f7992 | ||
|
|
c40466f3a8 | ||
|
|
1bcc064593 | ||
|
|
ffa213c794 | ||
|
|
c217b3ee32 | ||
|
|
dd1cb1cccf | ||
|
|
9df1325d14 | ||
|
|
271a4e4719 | ||
|
|
15b3a3f77d | ||
|
|
665a34e518 | ||
|
|
753040f73a | ||
|
|
e88d20cbfb | ||
|
|
f0938e1a23 | ||
|
|
df0e2f7881 | ||
|
|
ada8bbb3b4 | ||
|
|
a19ed46b2a | ||
|
|
d251ce07e0 |
@@ -162,6 +162,8 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: cemu-bin-windows-x64
|
name: cemu-bin-windows-x64
|
||||||
path: ./bin/Cemu.exe
|
path: ./bin/Cemu.exe
|
||||||
|
|
||||||
|
|
||||||
build-macos:
|
build-macos:
|
||||||
runs-on: macos-12
|
runs-on: macos-12
|
||||||
steps:
|
steps:
|
||||||
@@ -213,7 +215,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
cmake .. ${{ env.BUILD_FLAGS }} -DCMAKE_BUILD_TYPE=${{ env.BUILD_MODE }} -DCMAKE_C_COMPILER=/usr/local/opt/llvm@14/bin/clang -DCMAKE_CXX_COMPILER=/usr/local/opt/llvm@14/bin/clang++ -G Ninja
|
cmake .. ${{ env.BUILD_FLAGS }} -DCMAKE_BUILD_TYPE=${{ env.BUILD_MODE }} -DPORTABLE=OFF -DMACOS_BUNDLE=ON -DCMAKE_C_COMPILER=/usr/local/opt/llvm@14/bin/clang -DCMAKE_CXX_COMPILER=/usr/local/opt/llvm@14/bin/clang++ -G Ninja
|
||||||
|
|
||||||
- name: "Build Cemu"
|
- name: "Build Cemu"
|
||||||
run: |
|
run: |
|
||||||
@@ -221,11 +223,20 @@ jobs:
|
|||||||
|
|
||||||
- name: Prepare artifact
|
- name: Prepare artifact
|
||||||
if: ${{ inputs.deploymode == 'release' }}
|
if: ${{ inputs.deploymode == 'release' }}
|
||||||
run: chmod a+x bin/Cemu_release && mv bin/Cemu_release bin/Cemu
|
run: |
|
||||||
|
mkdir bin/Cemu_app
|
||||||
|
mv bin/Cemu_release.app bin/Cemu_app/Cemu.app
|
||||||
|
mv bin/Cemu_app/Cemu.app/Contents/MacOS/Cemu_release bin/Cemu_app/Cemu.app/Contents/MacOS/Cemu
|
||||||
|
sed -i '' 's/Cemu_release/Cemu/g' bin/Cemu_app/Cemu.app/Contents/Info.plist
|
||||||
|
chmod a+x bin/Cemu_app/Cemu.app/Contents/MacOS/Cemu
|
||||||
|
ln -s /Applications bin/Cemu_app/Applications
|
||||||
|
hdiutil create ./bin/tmp.dmg -ov -volname "Cemu" -fs HFS+ -srcfolder "./bin/Cemu_app"
|
||||||
|
hdiutil convert ./bin/tmp.dmg -format UDZO -o bin/Cemu.dmg
|
||||||
|
rm bin/tmp.dmg
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
if: ${{ inputs.deploymode == 'release' }}
|
if: ${{ inputs.deploymode == 'release' }}
|
||||||
with:
|
with:
|
||||||
name: cemu-bin-macos-x64
|
name: cemu-bin-macos-x64
|
||||||
path: ./bin/Cemu
|
path: ./bin/Cemu.dmg
|
||||||
@@ -64,13 +64,7 @@ jobs:
|
|||||||
rm -r ./${{ env.CEMU_FOLDER_NAME }}
|
rm -r ./${{ env.CEMU_FOLDER_NAME }}
|
||||||
|
|
||||||
- name: Create release from macos-bin
|
- name: Create release from macos-bin
|
||||||
run: |
|
run: cp cemu-bin-macos-x64/Cemu.dmg upload/cemu-${{ env.CEMU_VERSION }}-macos-12-x64.dmg
|
||||||
ls ./
|
|
||||||
ls ./bin/
|
|
||||||
cp -R ./bin ./${{ env.CEMU_FOLDER_NAME }}
|
|
||||||
mv cemu-bin-macos-x64/Cemu ./${{ env.CEMU_FOLDER_NAME }}/Cemu
|
|
||||||
zip -9 -r upload/cemu-${{ env.CEMU_VERSION }}-macos-12-x64.zip ${{ env.CEMU_FOLDER_NAME }}
|
|
||||||
rm -r ./${{ env.CEMU_FOLDER_NAME }}
|
|
||||||
|
|
||||||
- name: Create release
|
- name: Create release
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@@ -68,13 +68,7 @@ jobs:
|
|||||||
rm -r ./${{ env.CEMU_FOLDER_NAME }}
|
rm -r ./${{ env.CEMU_FOLDER_NAME }}
|
||||||
|
|
||||||
- name: Create release from macos-bin
|
- name: Create release from macos-bin
|
||||||
run: |
|
run: cp cemu-bin-macos-x64/Cemu.dmg upload/cemu-${{ env.CEMU_VERSION }}-macos-12-x64.dmg
|
||||||
ls ./
|
|
||||||
ls ./bin/
|
|
||||||
cp -R ./bin ./${{ env.CEMU_FOLDER_NAME }}
|
|
||||||
mv cemu-bin-macos-x64/Cemu ./${{ env.CEMU_FOLDER_NAME }}/Cemu
|
|
||||||
zip -9 -r upload/cemu-${{ env.CEMU_VERSION }}-macos-12-x64.zip ${{ env.CEMU_FOLDER_NAME }}
|
|
||||||
rm -r ./${{ env.CEMU_FOLDER_NAME }}
|
|
||||||
|
|
||||||
- name: Create release
|
- name: Create release
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ cmake_minimum_required(VERSION 3.21.1)
|
|||||||
|
|
||||||
option(ENABLE_VCPKG "Enable the vcpkg package manager" ON)
|
option(ENABLE_VCPKG "Enable the vcpkg package manager" ON)
|
||||||
option(PORTABLE "All data created and maintained by Cemu will be in the directory where the executable file is located" ON)
|
option(PORTABLE "All data created and maintained by Cemu will be in the directory where the executable file is located" ON)
|
||||||
|
option(MACOS_BUNDLE "The executable when built on macOS will be created as an application bundle" OFF)
|
||||||
set(EXPERIMENTAL_VERSION "" CACHE STRING "") # used by CI script to set experimental version
|
set(EXPERIMENTAL_VERSION "" CACHE STRING "") # used by CI script to set experimental version
|
||||||
|
|
||||||
if (EXPERIMENTAL_VERSION)
|
if (EXPERIMENTAL_VERSION)
|
||||||
|
|||||||
@@ -1,7 +1 @@
|
|||||||
# LEGO City Undercover (USA)
|
# LEGO City Undercover (USA)
|
||||||
|
|
||||||
[General]
|
|
||||||
loadSharedLibraries = false
|
|
||||||
|
|
||||||
[Graphics]
|
|
||||||
GPUBufferCacheAccuracy = 0
|
|
||||||
@@ -1,7 +1 @@
|
|||||||
# LEGO City Undercover (EUR)
|
# LEGO City Undercover (EUR)
|
||||||
|
|
||||||
[General]
|
|
||||||
loadSharedLibraries = false
|
|
||||||
|
|
||||||
[Graphics]
|
|
||||||
GPUBufferCacheAccuracy = 0
|
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
# Monster Hunter 3(tri-)GHD Ver. (JPN)
|
# Monster Hunter 3(tri-)GHD Ver. (JPN)
|
||||||
|
|
||||||
[Graphics]
|
[Graphics]
|
||||||
GPUBufferCacheAccuracy = 1
|
|
||||||
streamoutBufferCacheSize = 48
|
streamoutBufferCacheSize = 48
|
||||||
@@ -1,7 +1,4 @@
|
|||||||
# Super Mario 3D World (JPN)
|
# Super Mario 3D World (JPN)
|
||||||
|
|
||||||
[CPU]
|
|
||||||
|
|
||||||
[Graphics]
|
[Graphics]
|
||||||
accurateShaderMul = false
|
accurateShaderMul = false
|
||||||
GPUBufferCacheAccuracy = 2
|
|
||||||
@@ -2,6 +2,3 @@
|
|||||||
|
|
||||||
[CPU]
|
[CPU]
|
||||||
cpuMode = Singlecore-Recompiler
|
cpuMode = Singlecore-Recompiler
|
||||||
|
|
||||||
[Graphics]
|
|
||||||
GPUBufferCacheAccuracy = 2
|
|
||||||
@@ -1,7 +1 @@
|
|||||||
# Scribblenauts Unlimited (EUR)
|
# Scribblenauts Unlimited (EUR)
|
||||||
|
|
||||||
[General]
|
|
||||||
loadSharedLibraries = true
|
|
||||||
|
|
||||||
[Graphics]
|
|
||||||
GPUBufferCacheAccuracy = 0
|
|
||||||
@@ -1,7 +1 @@
|
|||||||
# Ben 10 Omniverse (USA)
|
# Ben 10 Omniverse (USA)
|
||||||
|
|
||||||
[General]
|
|
||||||
loadSharedLibraries = false
|
|
||||||
|
|
||||||
[Graphics]
|
|
||||||
GPUBufferCacheAccuracy = 0
|
|
||||||
@@ -1,4 +1 @@
|
|||||||
# Rayman Legends (USA)
|
# Rayman Legends (USA)
|
||||||
|
|
||||||
[Graphics]
|
|
||||||
GPUBufferCacheAccuracy = 0
|
|
||||||
@@ -1,7 +1 @@
|
|||||||
# Scribblenauts Unlimited (US)
|
# Scribblenauts Unlimited (US)
|
||||||
|
|
||||||
[General]
|
|
||||||
loadSharedLibraries = true
|
|
||||||
|
|
||||||
[Graphics]
|
|
||||||
GPUBufferCacheAccuracy = 0
|
|
||||||
@@ -1,4 +1 @@
|
|||||||
# Mass Effect 3 Special Edition (USA)
|
# Mass Effect 3 Special Edition (USA)
|
||||||
|
|
||||||
[Graphics]
|
|
||||||
GPUBufferCacheAccuracy = 0
|
|
||||||
@@ -1,4 +1 @@
|
|||||||
# ZombiU (US)
|
# ZombiU (US)
|
||||||
|
|
||||||
[Graphics]
|
|
||||||
GPUBufferCacheAccuracy = 0
|
|
||||||
@@ -1,4 +1 @@
|
|||||||
# 007 Legends (US)
|
# 007 Legends (US)
|
||||||
|
|
||||||
[Graphics]
|
|
||||||
GPUBufferCacheAccuracy = 0
|
|
||||||
@@ -1,7 +1 @@
|
|||||||
# Cabela's Dangerous Hunts 2013 (USA)
|
# Cabela's Dangerous Hunts 2013 (USA)
|
||||||
|
|
||||||
[General]
|
|
||||||
loadSharedLibraries = false
|
|
||||||
|
|
||||||
[Graphics]
|
|
||||||
GPUBufferCacheAccuracy = 0
|
|
||||||
@@ -2,6 +2,3 @@
|
|||||||
|
|
||||||
[CPU]
|
[CPU]
|
||||||
cpuMode = Singlecore-Recompiler
|
cpuMode = Singlecore-Recompiler
|
||||||
|
|
||||||
[Graphics]
|
|
||||||
GPUBufferCacheAccuracy = 2
|
|
||||||
@@ -2,6 +2,3 @@
|
|||||||
|
|
||||||
[CPU]
|
[CPU]
|
||||||
cpuMode = Singlecore-Recompiler
|
cpuMode = Singlecore-Recompiler
|
||||||
|
|
||||||
[Graphics]
|
|
||||||
GPUBufferCacheAccuracy = 2
|
|
||||||
@@ -1,4 +1 @@
|
|||||||
# ZombiU (EUR)
|
# ZombiU (EUR)
|
||||||
|
|
||||||
[Graphics]
|
|
||||||
GPUBufferCacheAccuracy = 0
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user