source: nscp/service/Jamfile @ cc2efd6

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

tried boost::asio in the NRPECLient and split settings to a new file (reduces build time)

  • Property mode set to 100644
File size: 858 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        core_api.cpp
27        settings_manager_impl.cpp
28        ../include/NSCHelper.cpp
29        ../include/arrayBuffer.cpp
30        ../include/ServiceCmd.cpp
31        ../include/Socket.cpp
32        ../include/b64/b64.c
33
34        : # requirements
35        <dependency>$(target).exe.manifest
36        #<runtime-link>static
37        <find-static-library>ws2_32
38        <find-static-library>Userenv
39        <find-static-library>ole32
40        <variant>release:<dependency>update_version
41        : # default build
42
43        : # usage requirements
44        ;
Note: See TracBrowser for help on using the repository browser.