From: Mikko Rasa Date: Mon, 15 Oct 2012 10:25:32 +0000 (+0300) Subject: Update Build and .gitignore files X-Git-Url: http://git.tdb.fi/?p=libs%2Fnet.git;a=commitdiff_plain;h=f75d04b0bc1bbf034a1ceeb9a3956e3871264e84 Update Build and .gitignore files --- diff --git a/.gitignore b/.gitignore index 8c908ea..9ef2018 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,5 @@ -/.deps -/.options.* -/.profile -/debug +.config +temp /httpget /libmspnet.a /libmspnet.so @@ -9,5 +7,3 @@ /mspnet.pc /netcat /pc-32-windows -/release -/temp diff --git a/Build b/Build index 01d3a84..7e4a693 100644 --- a/Build +++ b/Build @@ -1,7 +1,8 @@ package "mspnet" { + require "sigc++-2.0"; require "mspcore"; - if "arch=win32" + if_arch "windows" { build_info { @@ -9,23 +10,15 @@ package "mspnet" }; }; - headers "msp/net" - { - source "source/net"; - install true; - }; - - headers "msp/http" - { - source "source/http"; - install true; - }; - library "mspnet" { source "source/net"; source "source/http"; install true; + install_map + { + map "source" "include/msp"; + }; }; program "netcat"