source: nscp/service/Jamfile @ 2305b35

0.4.00.4.10.4.2
Last change on this file since 2305b35 was 5229435, checked in by Michael Medin <michael@…>, 4 years ago

Added some missing files and ignore lists

  • Property mode set to 100644
File size: 817 bytes
Line 
1import feature : feature ;
2import modules ;
3import os ;
4import errors ;
5import stage ;
6import common ;
7import option ;
8
9local target = NSClient++ ;
10
11make $(target).exe.manifest : NSClient++.manifest : common.copy ;
12explicit $(target).exe.manifest ;
13
14notfile update_version : @update_version ;
15actions update_version
16{
17        XAutobuild.exe -f $(TOP)
18}
19explicit update_version ;
20
21exe $(target)
22
23        : # sources
24        NSClient++.cpp
25        NSCPlugin.cpp
26        ../include/NSCHelper.cpp
27        ../include/arrayBuffer.cpp
28        ../include/ServiceCmd.cpp
29        ../include/Socket.cpp
30        ../include/b64/b64.c
31
32        : # requirements
33        <dependency>$(target).exe.manifest
34        #<runtime-link>static
35        <find-static-library>ws2_32
36        <find-static-library>Userenv
37        <find-static-library>ole32
38        <variant>release:<dependency>update_version
39        : # default build
40
41        : # usage requirements
42        ;
Note: See TracBrowser for help on using the repository browser.