|
Revision 2814, 0.7 kB
(checked in by warmerda, 7 years ago)
|
fixed cr/lf problems
|
- Property svn:eol-style set to
native
- Property svn:executable set to
*
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
@echo off |
|---|
| 2 |
|
|---|
| 3 |
set GDAL_DIR=c:\gdal114 |
|---|
| 4 |
|
|---|
| 5 |
if exist %GDAL_DIR%\SETUP_GDAL.BAT goto DIROK |
|---|
| 6 |
|
|---|
| 7 |
echo ----------------------------------------------------------------------- |
|---|
| 8 |
echo It appears that the GDAL_DIR environment variable is not set properly |
|---|
| 9 |
echo in SETUP_GDAL.BAT. Please edit GDAL_SETUP.BAT, and modify the GDAL_DIR |
|---|
| 10 |
echo variable to contain the directory containing the SETUP_GDAL.BAT ... the |
|---|
| 11 |
echo base directory of the unzipped GDAL tree. |
|---|
| 12 |
echo ----------------------------------------------------------------------- |
|---|
| 13 |
|
|---|
| 14 |
goto Done |
|---|
| 15 |
|
|---|
| 16 |
:DIROK |
|---|
| 17 |
|
|---|
| 18 |
set PATH=%GDAL_DIR%\bin;%PATH% |
|---|
| 19 |
set INCLUDE=%GDAL_DIR%\include;%INCLUDE% |
|---|
| 20 |
set LIB=%GDAL_DIR%\include;%LIB% |
|---|
| 21 |
set PYTHONPATH=%GDAL_DIR%\pymod;%PYTHONPATH% |
|---|
| 22 |
set GEOTIFF_CSV=%GDAL_DIR%\data |
|---|
| 23 |
|
|---|
| 24 |
:Done |
|---|