Skip to content

Commit 0561392

Browse files
authored
Fix UNIX-like system installation script (#2232)
1 parent 19dc566 commit 0561392

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ $ mkdir build && cd build # Create a build directory
8585
$ cmake -DCMAKE_BUILD_TYPE=Release .. # Configure the project with CMake
8686
$ cmake --build . # Compile the project
8787
$ ctest --verbose # Run tests
88-
$ cmake --install # Run the install target (install library, public headers, application and CMake files)
88+
$ cmake --install . # Run the install target (install library, public headers, application and CMake files)
8989
```
9090

9191
This will install the library into the "standard locations". The library will be installed in `/usr/local/lib`, executables (including the exiv2 command-line program) in `/usr/local/bin/` and header files in `/usr/local/include/exiv2`. The target directory for the installation can be modified by using the CMake option `-DCMAKE_INSTALL_PREFIX`.

0 commit comments

Comments
 (0)