X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=Build;h=01d3a842699b8f7ac2c705c7c9440b9981eb6df6;hb=de95d7d024ebf9d18721579f52b98311c853ea67;hp=dc20f0e9f6ba52944e6cab719a0184b27319c44a;hpb=4cf6ecb96f67cc21e4db0793192a3af308ba76cf;p=libs%2Fnet.git diff --git a/Build b/Build index dc20f0e..01d3a84 100644 --- a/Build +++ b/Build @@ -11,13 +11,47 @@ package "mspnet" headers "msp/net" { - source "source"; + source "source/net"; + install true; + }; + + headers "msp/http" + { + source "source/http"; install true; }; library "mspnet" { - source "source"; + source "source/net"; + source "source/http"; install true; }; + + program "netcat" + { + source "examples/netcat.cpp"; + build_info + { + library "mspnet"; + }; + }; + + program "httpget" + { + source "examples/httpget.cpp"; + build_info + { + library "mspnet"; + }; + }; + + program "minihttpd" + { + source "examples/minihttpd.cpp"; + build_info + { + library "mspnet"; + }; + }; };