aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMerry <MerryMage@users.noreply.github.com>2018-02-14 21:34:38 +0000
committergdkchan <gab.dark.100@gmail.com>2018-02-14 18:34:38 -0300
commit74fbe1494dfbee63300e04db8e911c34407d2717 (patch)
tree4b2f81e971ff10ebfb551385b45ff95328f85483
parent7ed1153062c27e3975fce738bfb250a0fdbfdf87 (diff)
macOS build (#13)
* Ryujinx.csproj: Add osx-x64 RuntimeIdentifier Allows Ryujinx to build and run on macOS * Add .travis.yml
-rw-r--r--.travis.yml8
-rw-r--r--Ryujinx.csproj2
2 files changed, 9 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 00000000..15c55336
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,8 @@
+os: osx
+language: csharp
+solution: Ryujinx.sln
+mono: none
+dotnet: 2.0.0
+script:
+ - dotnet restore
+ - dotnet build
diff --git a/Ryujinx.csproj b/Ryujinx.csproj
index 9ad696d8..9b0e7396 100644
--- a/Ryujinx.csproj
+++ b/Ryujinx.csproj
@@ -2,8 +2,8 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
- <RuntimeIdentifier>win10-x64</RuntimeIdentifier>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
+ <RuntimeIdentifiers>win10-x64;osx-x64</RuntimeIdentifiers>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="OpenTK.NETCore" Version="1.1.2749.6433" />