Skip to content

Commit

Permalink
Fix UNIX-like system installation script (#2232)
Browse files Browse the repository at this point in the history
  • Loading branch information
mousepotato authored May 10, 2022
1 parent 19dc566 commit 0561392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ $ mkdir build && cd build # Create a build directory
$ cmake -DCMAKE_BUILD_TYPE=Release .. # Configure the project with CMake
$ cmake --build . # Compile the project
$ ctest --verbose # Run tests
$ cmake --install # Run the install target (install library, public headers, application and CMake files)
$ cmake --install . # Run the install target (install library, public headers, application and CMake files)
```

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`.
Expand Down

0 comments on commit 0561392

Please sign in to comment.