diff options
author | Przemyslaw Skibinski <inikep@gmail.com> | 2016-11-22 10:14:11 (GMT) |
---|---|---|
committer | Przemyslaw Skibinski <inikep@gmail.com> | 2016-11-22 10:14:11 (GMT) |
commit | 65a542579b4849a6b064c8c8b3baf16e31119294 (patch) | |
tree | f355af36c8975142393c2d433f646e3415242b51 /lib/dll | |
parent | 2cbd0233b8f018ed97f3e7e07eacb38d896ab261 (diff) | |
download | lz4-65a542579b4849a6b064c8c8b3baf16e31119294.zip lz4-65a542579b4849a6b064c8c8b3baf16e31119294.tar.gz lz4-65a542579b4849a6b064c8c8b3baf16e31119294.tar.bz2 |
updated README.md
Diffstat (limited to 'lib/dll')
-rw-r--r-- | lib/dll/example/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dll/example/README.md b/lib/dll/example/README.md index 4908663..223e473 100644 --- a/lib/dll/example/README.md +++ b/lib/dll/example/README.md @@ -39,7 +39,7 @@ The header files from `include\` and the dynamic library `dll\liblz4.dll` are required to compile a project using gcc/MinGW. The dynamic library has to be added to linking options. It means that if a project that uses LZ4 consists of a single `test-dll.c` -file it should be compiled with "liblz4.dll". For example: +file it should be linked with `dll\liblz4.dll`. For example: ``` gcc $(CFLAGS) -Iinclude\ test-dll.c -o test-dll dll\liblz4.dll ``` |