Re: [gdal-dev] Converting VPF vector set into shapefile (under Windows environment)

2023-06-29 Thread Jerome Siot
Hello, Replacing "\" by "/" gives result with error. (windows 10) jerome.siot@WORK C:\Users\jerome.siot $ ogrinfo gltp:/vrf/C:/git/gdal/autotest/ogr/data/vm2alv2_texash/texash vpf_open_table: error opening vpf_open_table: error opening vpf_open_table: error opening

Re: [gdal-dev] Converting VPF vector set into shapefile (under Windows environment)

2023-06-29 Thread Philippe Ghesquiere via gdal-dev
Hi Jérome, Thanks for the hint : it does work, despites the warning messages Philippe On Thu, Jun 29, 2023 at 11:45 AM Jerome Siot wrote: > Hello, > > Replacing "\" by "/" gives result with error. (windows 10) > > > > jerome.siot@WORK C:\Users\jerome.siot > > $ ogrinfo

[gdal-dev] Debugging in Visual Studio 2019?

2023-06-29 Thread Abel Pau
Hi everyone, I am a little stuck in something. Let's see if someone can help me. I'm immersed in the creation of a new driver. First step OK: download GDAL from GitHub, install some dependences, and use Cmake to create GDAL for Visual Studio. Big one project. Second step OK: Add a new driver in

Re: [gdal-dev] Debugging in Visual Studio 2019?

2023-06-29 Thread Joaquim Manuel Freire Luís via gdal-dev
Debugging with VS is actually simple. You need: * To build GDAL and your driver in debug mode * Step 1, see Screenshot_1. Load one executable that has a code path into that of your driver (gdalinfo?) * Step 2, see Screenshot_2. Right-click on Properties and give the full set of

[gdal-dev] Change name of compiled DLL

2023-06-29 Thread Derek Newhall
Hi, When building GDAL 3.5.1 and earlier with Nmake, the created DLL was named gdal305.dll (or similar). Now with Cmake and 3.7.0 it's just gdal.dll. Is there a way to configure the DLL name? We're concerned about version clashes with just using the name gdal.dll. I checked the build

Re: [gdal-dev] Change name of compiled DLL

2023-06-29 Thread Joaquim Manuel Freire Luís via gdal-dev
Yes, there is. The docs explain that somewhere. Set the variable GDAL_LIB_OUTPUT_NAME I have this in my ConfigUser.cmake file set (GDAL_LIB_OUTPUT_NAME gdal_w${BITAGE} CACHE STRING "" FORCE) From: gdal-dev On Behalf Of Derek Newhall Sent: Thursday, June 29, 2023 3:35 PM To:

Re: [gdal-dev] Debugging in Visual Studio 2019?

2023-06-29 Thread Joaquim Manuel Freire Luís via gdal-dev
Second SS From: gdal-dev On Behalf Of Joaquim Manuel Freire Luís via gdal-dev Sent: Thursday, June 29, 2023 3:15 PM To: Abel Pau ; gdal-dev@lists.osgeo.org Subject: Re: [gdal-dev] Debugging in Visual Studio 2019? Debugging with VS is actually simple. You need: * To build GDAL and your