X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=Build;h=01d3a842699b8f7ac2c705c7c9440b9981eb6df6;hb=cb31bf0d3670e8a2a1d37306a041a9f1fd558e6a;hp=640ee8e74f702bb0530e504fd5fade14ef49823f;hpb=e9b615da8c240aa3522c708951551828f5e0ed7b;p=libs%2Fnet.git diff --git a/Build b/Build index 640ee8e..01d3a84 100644 --- a/Build +++ b/Build @@ -1,6 +1,6 @@ package "mspnet" { - require "mspio"; + require "mspcore"; if "arch=win32" { build_info @@ -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"; + }; + }; };