Changes between Version 31 and Version 32 of FileGDB


Ignore:
Timestamp:
Nov 1, 2011, 6:23:39 AM (13 years ago)
Author:
Even Rouault
Comment:

Add section how to build as a non-plugin

Legend:

Unmodified
Added
Removed
Modified
  • FileGDB

    v31 v32  
    1919== Compile ==
    2020
    21 === Windows (Visual Studio 2008) ===
     21=== Windows (Visual Studio 2008) - FileGDB driver as a plugin ===
    2222
    23 You will have to compile filegdb as a ''plugin'' for GDAL:
     23You may compile filegdb as a ''plugin'' for GDAL:
    2424
    25251. Compile GDAL with the FGDB section commented
    2626
    27 2. Now edit your ''nmake.opt'' so it contains something like the following (pay attention to the FGDB_SDK path):
     272. Now edit your ''nmake.opt'' (or add it in nmake.local) so it contains something like the following (pay attention to the FGDB_SDK path):
    2828
    2929   {{{
     
    4646
    47475. You will also need the file: ''FileGDB_API_VS2008_1_0Final/bin/FileGDBAPI.dll''
     48
     49=== Windows (Visual Studio 2008) - FileGDB driver built inside gdalXX.dll ===
     50
     511. Eit your ''nmake.opt'' (or add it in nmake.local) so it contains something like the following (pay attention to the FGDB_SDK path and let FGDB_PLUGIN commented):
     52
     53   {{{
     54     FGDB_ENABLED = YES
     55     #FGDB_PLUGIN = YES
     56     FGDB_SDK = $(GDAL_HOME)\..\FileGDB_API_VS2008_1_0Final
     57     FGDB_INC = $(FGDB_SDK)\include
     58     FGDB_LIB = $(FGDB_SDK)\lib\FileGDBAPI.lib
     59   }}}
     60
     612. Compile GDAL
     62
     633. You will also need the file: ''FileGDB_API_VS2008_1_0Final/bin/FileGDBAPI.dll''
    4864
    4965=== Unix (Tested on Ubuntu 8.04 and trunk 22708) ===