diff options
author | Daniil Cherednik <dan.cherednik@gmail.com> | 2025-05-03 15:46:04 +0200 |
---|---|---|
committer | Daniil Cherednik <dan.cherednik@gmail.com> | 2025-05-03 15:47:15 +0200 |
commit | 177622ee9513784a21d9f10ab0c1e9774c0ddc71 (patch) | |
tree | 826b7aa4fedf613cfd69102bc3a8975ffc61af51 | |
parent | 50490a54483910b84ad1802ed4d880c99133d932 (diff) | |
download | atracdenc-177622ee9513784a21d9f10ab0c1e9774c0ddc71.tar.gz |
Update README.md
-rw-r--r-- | README.md | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -4,10 +4,16 @@ It is free LGPL implementation of ATRAC1, ATRAC3 encoders. Building: You need: -* C++11 compiler. +* C++14 compiler. * cmake >= 3.1 * libsndfiles +In case of git clone command GHA submodule should be fetched: + +``` +git submodule update --init --recursive +``` + binary: ``` @@ -18,9 +24,16 @@ cmake ../ make ``` +Binary and tests (for development): -binary and tests: +Make sure google test library is installed + +debian: +``` +apt-get install libgtest-dev cmake-extras +``` +Now we can build ``` cd test cmake ../ |