Cleanup gitignore and project file structure

This commit is contained in:
TSR Berry 2023-07-20 22:42:25 +02:00 committed by Emmanuel Hansen
parent 5708f700ec
commit beba6d1422
7 changed files with 17 additions and 22 deletions

4
.gitignore vendored
View File

@ -45,7 +45,6 @@ build/
*.vssscc
.builds
*.pidb
*.log
*.scc
# Visual C++ cache files
@ -173,5 +172,4 @@ PublishProfiles/
# Glade backup files
*.glade~
/src/RyujinxAndroid/.idea
/src/RyujinxAndroid/app/src/main/jniLibs/arm64-v8a

View File

@ -3,14 +3,14 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<LinkerFlavor Condition="'$(RuntimeIdentifier)'=='linux-bionic-arm64'">lld</LinkerFlavor>
<DefineConstants>$(DefineConstants);FORCE_EXTERNAL_BASE_DIR</DefineConstants>
<LinkerFlavor Condition="'$(RuntimeIdentifier)'=='linux-bionic-arm64'">lld</LinkerFlavor>
<DefineConstants>$(DefineConstants);FORCE_EXTERNAL_BASE_DIR</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<PublishAot>true</PublishAot>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
<InvariantGlobalization>true</InvariantGlobalization>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
<InvariantGlobalization>true</InvariantGlobalization>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<OptimizationPreference>Speed</OptimizationPreference>
@ -30,7 +30,7 @@
<RdXmlFile Include="rd.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Rxmxnx.PInvoke.Extensions" />
<PackageReference Include="Rxmxnx.PInvoke.Extensions" />
<PackageReference Include="Silk.NET.Vulkan" />
<PackageReference Include="Silk.NET.Vulkan.Extensions.KHR" />
<LinkerArg Condition="'$(RuntimeIdentifier)'=='linux-bionic-arm64'" Include="-llog" />
@ -38,4 +38,4 @@
<ItemGroup>
<Folder Include="Jni\" />
</ItemGroup>
</Project>
</Project>

View File

@ -1,15 +1,12 @@
.idea/
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties
.DS_Store
build/
captures
.externalNativeBuild
.cxx/
app/src/main/jniLibs/arm64-v8a/**
!app/src/main/jniLibs/arm64-v8a/.gitkeep

View File

@ -1 +0,0 @@
/build

View File

@ -0,0 +1 @@

0
src/RyujinxAndroid/gradlew vendored Normal file → Executable file
View File