public
Description: A Social Virtual Private Network based on IP over P2P Overlay
Homepage: http://www.socialvpn.org
Clone URL: git://github.com/ptony82/socialvpn.git
socialvpn / socialvpn.build
100644 29 lines (21 sloc) 0.851 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0"?>
<project name="SocialVPN" default="build">
  <property name="ipop.dir" value="../ipop" />
  <property name="bin.dir" value="bin" />
 
  <target name="build" description="Build SocialVPN">
 
    <nant buildfile="${ipop.dir}/ipop.build" failonerror="false"/>
    <nant buildfile="${ipop.dir}/src/ManagedNode/default.build" failonerror="false"/>
 
    <!-- copy the dlls -->
    <copy todir="./lib" failonerror="false">
      <fileset basedir="${ipop.dir}/lib/">
        <include name="*.dll" />
      </fileset>
    </copy>
 
    <nant buildfile="src/default.build" failonerror="true"/>
    <nant buildfile="utils/default.build" failonerror="true"/>
 
    <mkdir dir="${bin.dir}" failonerror="true"/>
 
    <exec program="cp" failonerror="false">
      <arg line="-r ${ipop.dir}/drivers ${bin.dir}"/>
    </exec>
 
  </target>
</project>