Lines Matching refs:dll
7 - `dll\msys-lz4-1.dll` : The DLL of LZ4 library, compiled by msys
8 - `dll\liblz4.dll.a` : The import library of LZ4 library for Visual C++
31 Use `cd example` and `make` to build `fullbench-dll` and `fullbench-lib`.
32 `fullbench-dll` uses a dynamic LZ4 library from the `dll` directory.
38 The header files from `include\` and the dynamic library `dll\msys-lz4-1.dll`
41 It means that if a project that uses LZ4 consists of a single `test-dll.c`
42 file it should be linked with `dll\msys-lz4-1.dll`. For example:
44 gcc $(CFLAGS) -Iinclude\ test-dll.c -o test-dll dll\msys-lz4-1.dll
46 The compiled executable will require LZ4 DLL which is available at `dll\msys-lz4-1.dll`.
51 Open `example\fullbench-dll.sln` to compile `fullbench-dll` that uses a
52 dynamic LZ4 library from the `dll` directory. The solution works with Visual C++
59 The header files from `include\` and the import library `dll\liblz4.dll.a`
66 If one will provide only the name `liblz4.dll.a` without a full path to the library
69 The compiled executable will require LZ4 DLL which is available at `dll\msys-lz4-1.dll`.