Skip to content

Commit 6f16367

Browse files
authored
Merge pull request #19 from drojaazu/dev
Additional notes on installation; removed redundant file path in cmak…
2 parents 2c3fc13 + abdc5aa commit 6f16367

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.23)
2-
project(chrgfx VERSION 3.0.1)
2+
project(chrgfx VERSION 3.0.2)
33

44
set(PROJECT_CONTACT "Damian R (damian@motoi.pro)")
55
set(PROJECT_WEBSITE "https://github.com/drojaazu")

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ CMake is used for the build process. From the root of the project directory:
1414
make
1515
sudo make install
1616

17+
Note that cmake installs library content to `/usr/local` by default, which is not included in the ld search path in some distros. If libchrgfx.so cannot be found, you may want to add `/usr/local/lib` to the search path using `ldconfig`, or manually specify the installation prefix, e.g.:
18+
19+
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr ..
20+
21+
Manual uninstallation can be done using the install_manifest.txt file within the cmake build directory:
22+
23+
sudo xargs rm < install_manifest.txt
24+
1725
# Utilities
1826
There are three support utilities included: `chr2png`, `png2chr`, and `palview`.
1927

lib/chrgfx/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ PUBLIC
3939
palconv.hpp
4040
paldef.hpp
4141
rgb_layout.hpp
42-
imaging.hpp
4342
types.hpp
4443
utils.hpp
4544
)

0 commit comments

Comments
 (0)