From 2f6fe5286df95bc6d0f14d6f8368bf9bc3e756c1 Mon Sep 17 00:00:00 2001 From: Sophon96 <71684640+Sophon96@users.noreply.github.com> Date: Wed, 4 Oct 2023 16:39:28 -0700 Subject: [PATCH] chore: trim trailing newline --- README.md | 2 +- core/meson.build | 1 - meson.build | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 0aeaeaa..347e922 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ JABACAT-created machine learning library from scratch. ## Build > [!IMPORTANT] > This project uses [The Meson Build system](https://mesonbuild.com/index.html). Follow instructions posted on the website to [install meson](https://mesonbuild.com/SimpleStart.html). On Windows, there is a winget package available. + To build, setup the build directory. Any configuration steps should be done now (specifying compiler or linker, etc.). ```bash meson setup build # replace `build` with any arbitrary output build directory @@ -25,4 +26,3 @@ Run `meson test` to test the project. ```bash meson test -C build # replace `build` ``` - diff --git a/core/meson.build b/core/meson.build index f530d8f..deff306 100644 --- a/core/meson.build +++ b/core/meson.build @@ -3,4 +3,3 @@ jmlcore = library('jmlcore', core_sources, include_directories: core_inc, install: true) - diff --git a/meson.build b/meson.build index f110dd3..65a7b82 100644 --- a/meson.build +++ b/meson.build @@ -4,4 +4,3 @@ project('jml', 'cpp', core_inc = include_directories('core/include') subdir('core') -