diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-18 08:48:35 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-18 08:48:35 +0100 |
| commit | 8cf214b3e06556aa0aa18133aac60ddbedebc06e (patch) | |
| tree | 86d0ff4cfb91cf609071c900f2d400ecb89bdba2 /ReadMe.md | |
| parent | 76cf9156127bf7f082294a0c7e79f86059fe69ab (diff) | |
| parent | b21246fbf4b082e21f811d488bd85e8dafdee428 (diff) | |
Merge pull request #6 from nekernel-org/dev
feat: CMake file, new entries to gitignore, and code under BSD-3 now.
Diffstat (limited to 'ReadMe.md')
| -rw-r--r-- | ReadMe.md | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -16,4 +16,19 @@ - Run `nebuild` and pass the path to the manifest file. +## Guide (CMake): + +```zsh +# out-of-source configure + build (POSIX) +cmake -S . -B build -DCMAKE_BUILD_TYPE=Release +cmake --build build --target nebuild + +# or build the provided custom target +cmake --build build --target build-nebuild + +# produce a Windows-style executable name on non-Windows hosts: +cmake -S . -B build -DBUILD_WINDOWS=ON -DCMAKE_BUILD_TYPE=Release +cmake --build build --target nebuild +``` + ###### Copyright (C) 2024-2025, Amlal El Mahrouss and NeKernel.org Authors, licensed under the BSD 3 Clause license. |
