updated test

This commit is contained in:
Fabio Pellacini 2021-06-23 23:33:58 +02:00
parent cdae8a0357
commit bd76291dd0
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ jobs:
run: | run: |
mkdir build && mkdir build &&
mkdir build/fast_float && mkdir build/fast_float &&
python3 ./scripts/amalgamate.py > build/fast_float/fast_float.h && python3 ./script/amalgamate.py > build/fast_float/fast_float.h &&
cp tests/string_test.cpp build/ && cp tests/string_test.cpp build/ &&
cd build && cd build &&
g++ string_test.cpp g++ string_test.cpp

View File

@ -143,7 +143,7 @@ target_link_libraries(myprogram PUBLIC fast_float)
## Using as single header ## Using as single header
The script `scripts/amalgamate.py` may be used to generate a single header The script `script/amalgamate.py` may be used to generate a single header
version of the library if so desired. version of the library if so desired.
Just run the script from the root directory of this repository. Just run the script from the root directory of this repository.
You can customize the license type and output file if desired as described in You can customize the license type and output file if desired as described in