source: nscp/x64-build.bat @ 358cda1

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

2009-08-30 MickeM

+ Added -c and -d command line options like so:

NSClient++ -c CheckFile2 path=c:\test pattern=*.txt MaxCrit=1 filter+written=gt:2h
NSClient++ -c <command> <argument 1> <argument 2> ...
-d Is the same thing but with debug enabled.

+ Added uninstall of old client (sort of broken but works)

2009-08-29 MickeM

  • Fixed issue with CheckFile (directory)
  • Rewrote the CA:s in the installer to work "better" (hopefully) in general it should be have more like a propper installer.

2009-07-18 MickeM

  • Fixed issue with no loggers avalible and "memory leak"
  • Added "firewall exception" to installer
  • Fixed an issue with the socket data buffer
  • Added new option to NSC.ini [NSCA] socket_timeout=30 (timeout in seconds when reading from NSCA sockets)
  • Fixed issue with NSCA socket.

2009-07-05 MickeM

2009-06-20 MickeM

  • Fixed issue with CheckDisk and paths not working out properly
  • Property mode set to 100644
File size: 1.1 KB
Line 
1@echo off
2
3SET BOOST_BUILD_PATH=D:\tools\boost-build
4rem SET BOOST_BUILD_PATH=D:\source\libs-c\boost_1_37_0\tools\build\v2
5rem SET TOOLS_DIR=d:\source\tools\;C:\Program Files\7-Zip\
6SET TOOLS_DIR=d:\source\tools\;%ProgramFiles%\7-Zip\
7
8
9SET openssl=D:\source\libs-c\openssl-0.9.8g\include
10SET boost=D:\source\libs-c\boost_1_34_1
11rem SET boost=D:\source\libs-c\boost_1_35_0
12
13set TARGET_LIB_DIR=D:\source\lib
14set TARGET_LIB_x86_DIR=%TARGET_LIB_DIR%\x86
15set TARGET_LIB_x64_DIR=%TARGET_LIB_DIR%\x64
16set TARGET_LIB_IA64_DIR=%TARGET_LIB_DIR%\IA64
17
18set PATH=%PATH%;%TOOLS_DIR%
19
20REM build x64 (Amd64, Emt64) binary
21SET version=x64
22call build.bat runtime-link=static  variant=release address-model=64 --library-path=%TARGET_LIB_x64_DIR%
23if %ERRORLEVEL% == -1 goto :error
24
25echo *************
26echo *           *
27echo *    O K    *
28echo *           *
29echo *************
30
31goto :eof
32
33:error
34echo *********************
35echo *                   *
36echo *    E R R O R      *
37echo *                   *
38echo * When building %version% *
39echo *                   *
40echo *********************
41
Note: See TracBrowser for help on using the repository browser.