blob: 1f544a1616f9df1d2cf4001d22789af7bf832c22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Directory tree where PROJ will be installed.
INSTDIR=C:\PROJ
#
# Set the following to the directory where the PROJ distribution
# data files (ie, the contents of ..\NAD). The following assumes
# the PROJ distribution is unpacked as C:\PROJ, which generally must
# be adjusted. It is also possible to leave this, and define the
# PROJ_LIB environment variable to point to the NAD directory.
#
PROJ_LIB_DIR=$(INSTDIR)\SHARE
# Uncomment the first for an optimized build, or the second for debug.
OPTFLAGS= /nologo /Ox /Op /MD
#OPTFLAGS= /nologo /Zi /MD /Fdproj.pdb
# Uncomment the first for linking exes against DLL or second for static
EXE_PROJ = proj_i.lib
#EXE_PROJ = proj.lib
# Set the version number for the DLL. Normally we leave this blank since
# we want software that is dynamically loading the DLL to have no problem
# with version numbers.
VERSION=
|