diff options
author | Miro Hrončok <miro@hroncok.cz> | 2013-12-24 01:11:20 (GMT) |
---|---|---|
committer | Miro Hrončok <miro@hroncok.cz> | 2013-12-24 01:11:20 (GMT) |
commit | 90edc3b5f7b21fc3a3317dfad975ac83ed74262e (patch) | |
tree | 04460e9ee4ded1295c6c90087968d73983fde948 | |
parent | 6938ae2dfde578e3980d077adefb86a4bdbd9df1 (diff) |
`make install` installs manpage and appdata file
-rw-r--r-- | openscad.pro | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/openscad.pro b/openscad.pro index ec5af20..6d8282a 100644 --- a/openscad.pro +++ b/openscad.pro @@ -416,10 +416,18 @@ applications.path = $$PREFIX/share/applications applications.files = icons/openscad.desktop INSTALLS += applications +appdata.path = $$PREFIX/share/appdata +appdata.files = openscad.appdata.xml +INSTALLS += appdata + icons.path = $$PREFIX/share/pixmaps icons.files = icons/openscad.png INSTALLS += icons +man.path = $$PREFIX/share/man/man1 +man.files = doc/openscad.1 +INSTALLS += man + CONFIG(winconsole) { include(winconsole.pri) } |