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