From 13cbfb614e8ba7881801298e39179280556b88c9 Mon Sep 17 00:00:00 2001 From: Pawel Rutka Date: Wed, 14 Jan 2026 10:15:47 +0100 Subject: [PATCH] Unnify S-CORE source folder --- README.md | 8 ++++---- src/BUILD | 0 2 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 src/BUILD diff --git a/README.md b/README.md index 1e8af75..d3b5232 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ It provides a **standardized project structure**, ensuring best practices for: | File/Folder | Description | | ----------------------------------- | ------------------------------------------------- | | `README.md` | Short description & build instructions | -| `src/` | Source files for the module | +| `score/` | Source files for the module | | `tests/` | Unit tests (UT) and integration tests (IT) | | `examples/` | Example files used for guidance | | `docs/` | Documentation (Doxygen for C++ / mdBook for Rust) | @@ -47,15 +47,15 @@ cd YOUR_PROJECT To build all targets of the module the following command can be used: ```sh -bazel build //src/... +bazel build //score/... ``` This command will instruct Bazel to build all targets that are under Bazel -package `src/`. The ideal solution is to provide single target that builds +package `score/`. The ideal solution is to provide single target that builds artifacts, for example: ```sh -bazel build //src/:release_artifacts +bazel build //score/:release_artifacts ``` where `:release_artifacts` is filegroup target that collects all release diff --git a/src/BUILD b/src/BUILD deleted file mode 100644 index e69de29..0000000