Skip to content

Commit

Permalink
gh-147: update readme and add final message on build in script
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorOrachyov committed Nov 7, 2022
1 parent 623cf72 commit ecc32a9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions DEPENDENCIES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Dependencies

> Spla project uses `monolitic` repository model. All dependent libraries stored as-is inside main project repository.
> Runtime dependencies are merged into single execution (.dll/.so/.dylib) object without external dependencies.
- [cxxopts](https://github.com/jarro2783/cxxopts) - Lightweight C++ command line option parser.
- [gtest](https://github.com/google/googletest) - Google C++ testing library.
- [opencl headers](https://github.com/KhronosGroup/OpenCL-Headers) - Khronos OpenCL-Headers.
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,12 @@ $ pip uninstall pyspla

### Get source code

The following code snippet downloads project source code repository, enters project root folder and runs submodules init
in order to get dependencies source code initialized. Must be executed from the folder where you want to locate project.
The following code snippet downloads project source code repository, and enters project root folder. Must be executed
from the folder where you want to locate project.

```shell
$ git clone https://github.com/JetBrains-Research/spla.git
$ cd spla
$ git submodule update --init --recursive
```

### Configure and run build
Expand Down
3 changes: 2 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@

import subprocess
import argparse
import shared


def main():
Expand All @@ -54,6 +53,8 @@ def main():
subprocess.check_call(build_config_args)
subprocess.check_call(build_run_args)

print(f"\nsuccessfully build target `{args.target}`")


if __name__ == '__main__':
main()

0 comments on commit ecc32a9

Please sign in to comment.