File: nmake.opt

package info (click to toggle)
mapserver 4.10.0-5.1%2Betch4
  • links: PTS
  • area: main
  • in suites: etch
  • size: 12,264 kB
  • ctags: 15,165
  • sloc: ansic: 164,837; sh: 6,141; python: 5,770; java: 5,169; perl: 2,388; cpp: 1,603; makefile: 735; lex: 507; yacc: 317; tcl: 158; cs: 85; ruby: 53
file content (35 lines) | stat: -rw-r--r-- 1,053 bytes parent folder | download | duplicates (2)
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
30
31
32
33
34
35
#
# nmake.opt - MSVC++ configuration for the PHP/MapScript
#
# This VC++ makefile will build the PHP module PHP_MAPSCRIPT.DLL
#
# To use the makefile:
#  - Open a DOS prompt window
#  - Run the VCVARS32.BAT script to initialize the VC++ environment variables
#  - Start the build with:  nmake /f makefile.vc
#
# $Id: nmake.opt,v 1.4 2006/02/14 16:58:50 assefa Exp $
#

########################################################################
# Secition I: PHP Mapscript Options
########################################################################
#Use PHP4 flag when building with PHP4. Default is assumed to be PHP5

PHP4=1

#name of the file that will be used when doing make install
#it will be copied in the directory specified by the 
PHP_INSTALL_DLL_NAME = php_mapscript_48.dll

!IFDEF PHP4
# Install directory for PHP4
PHP_INSTALL_DIR=c:\php\php4\extensions 
# PHP TS library for PHP4
PHP_TS_LIB_NAME=php4ts.lib
!ELSE
# Install directory for PHP5
#PHP_INSTALL_DIR=c:\php\php5\ext 
# PHP TS library for PHP5
#PHP_TS_LIB_NAME=php5ts.lib
!ENDIF