From 1c9eb82a24b047484e79047def6652aaa2fb3e2c Mon Sep 17 00:00:00 2001 From: Scarlet Ember <70824102+scarletquasar@users.noreply.github.com> Date: Sat, 16 Sep 2023 04:41:05 -0300 Subject: [PATCH] readme: removed outdated information --- README.md | 35 ----------------------------------- 1 file changed, 35 deletions(-) diff --git a/README.md b/README.md index 506b7244..10a078a1 100644 --- a/README.md +++ b/README.md @@ -57,38 +57,3 @@ async function httpGetFromCLR() { console.log(result); } ``` - -# Compiling from source - -### Supported platforms - -Melon supports a wide range of platforms that are also supported by [.NET 6](https://github.com/dotnet/core/blob/main/release-notes/6.0/supported-os.md) and [NodeJS](https://github.com/nodejs/node/blob/main/BUILDING.md#supported-platforms). - -### Building via command line - -Clone the repository using the following command: - -```bash -git clone https://github.com/MelonRuntime/Melon.git [path] -cd [path] -``` - -Then, you will be able to use one of the buid/debug commands: - -| Command | Description | -| ------- | ----------- | -| `build:win` | Builds the Melon binaries (Windows) | -| `build:linux` | Builds the Melon binaries (Linux) | -| `dev:win` | Builds the binaries and executes the program using hot reloading (only C#) (Windows) | -| `dev:linux` | Builds the binaries and executes the program using hot reloading (only C#) (Linux) | -| `install-dev:win` | Builds the binaries and installs Melon as a global npm package from the local source (Windows) | -| `install-dev:linux` | Builds the binaries and installs Melon as a global npm package from the local source (Linux) | -| `all-benchmarks` | Executes all Melon debug benchmarks (requires [Hyperfine](https://github.com/sharkdp/hyperfine)) | - -### Opening in Visual Studio Community or JetBrains Rider - -To open the C# solution `.sln` file and get access to the main runtime code just follow the path: - -``` -Melon > projects > native > MelonRuntime.sln -```