diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-06-23 01:09:20 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-06-23 01:09:20 +0100 |
commit | 7daa4f0bad4b15c5f4a660989109f650dd6ea329 (patch) | |
tree | 9024b100f0dd17c8fe36915ae4c12d381a129aa5 | |
parent | Add a status line to the output, including a 404 handler (diff) | |
download | icespider-7daa4f0bad4b15c5f4a660989109f650dd6ea329.tar.bz2 icespider-7daa4f0bad4b15c5f4a660989109f650dd6ea329.tar.xz icespider-7daa4f0bad4b15c5f4a660989109f650dd6ea329.zip |
Adds basic install rules
-rw-r--r-- | icespider/Jamfile.jam | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icespider/Jamfile.jam b/icespider/Jamfile.jam index 20ca41b..3f0a251 100644 --- a/icespider/Jamfile.jam +++ b/icespider/Jamfile.jam @@ -1,3 +1,5 @@ +import package ; + build-project core ; build-project compile ; build-project unittests ; @@ -7,3 +9,13 @@ lib Ice ; lib IceUtil ; lib pthread ; +package.install install : : + compile//icespider + : + core//icespider-core + common//icespider-common + fcgi//icespider-fcgi + ; +package.install-data install-tools : boost-build/tools : compile/icespider.jam ; +package.install-data install-ice : icespider/ice : [ glob common/*.ice ] ; + |