diff options
author | Marius Kintel <marius@kintel.net> | 2013-12-24 02:02:36 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-12-24 02:02:36 (GMT) |
commit | 41ab9e8ab613d6d33ade2fa4db1fe93878993282 (patch) | |
tree | 627571f37c1eb0770efd803bea4b2cb406ff74d2 | |
parent | de3a629656f26d16e9a9a5fa4aabc5a7eb04d517 (diff) | |
parent | 90edc3b5f7b21fc3a3317dfad975ac83ed74262e (diff) |
Merge pull request #575 from hroncok/patch-3
`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) } |