I have a local folder which includes the icons I want to use at my program.The directory is /images/icons in the src directory.
When I make the tarball the directory with the images does not appear so i guess I have to include it in the makefile.If so, how can I do that?
The
Makefile.am
in Anjuta has code in it to install images automatically:but it expects your images to be in
project_root/pixmaps
. If the images are there,make dist
will include the images. You can either change the path topixmaps
inMakefile.am
(the one in the project root), or move your images topixmaps
.