Re: [GRASS-dev] How to develop on windows.

2017-10-02 Thread Helmut Kudrnovsky
[please keep it on the GRASS dev ML! that other are able to benefit]

Gesendet: Montag, 02. Oktober 2017 um 18:46 Uhr
Von: "CM Reddy" <chalamcha...@hotmail.com>
Betreff: Re: [GRASS-dev] How to develop on windows.

Thanks Helmut for your help. Root folder ( OSGEO4W_ROOT) was incorrectly
set in the BAT file.

Application is up and running.

- Thanks

CM

On 02-10-2017 14:48, Helmut Kudrnovsky wrote:
> CM Reddy wrote
>> Hi Moritz
>>
>> I did the steps mentioned in the following and compiled the code
>> successfully on Windows 10 machine.
>>
>> * https://trac.osgeo.org/grass/wiki/CompileOnWindows
>>
>> No errors in the error.log file. It created grass executable successfully.
>>
>> Found following error in running the grass executable.
>> 
>> C:\OSGeo4W64\bin>grass73svn.bat
>> '""' is not recognized as an internal or external command,
>> operable program or batch file.
>> Press any key to continue . . .
>> 
> quoting here C:\OSGeo4W64\bin\grass73svn.bat:
>
> @echo off
> rem
> #
> rem #
> rem # GRASS initialization bat script (OSGeo4W)
> rem #
> rem
> #
>
> SET OSGEO4W_ROOT=C:\OSGeo4W64
>
> rem
> rem Set environmental variables
> rem
> call %OSGEO4W_ROOT%\bin\o4w_env.bat
> call %OSGEO4W_ROOT%\apps\grass\grass-7.3.svn\etc\env.bat
>
> rem
> rem Launch GRASS GIS
> rem
> "%GRASS_PYTHON%" "%GISBASE%\etc\grass73.py" %*
>
> rem
> rem Pause on error
> rem
> if %ERRORLEVEL% GEQ 1 pause
>
>
>
> -
> best regards
> Helmut
> --
> Sent from: 
> http://osgeo-org.1560.x6.nabble.com/Grass-Dev-f3991897.html[http://osgeo-org.1560.x6.nabble.com/Grass-Dev-f3991897.html]
> ___
> grass-dev mailing list
> grass-dev@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/grass-dev[https://lists.osgeo.org/mailman/listinfo/grass-dev]
 
___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] How to develop on windows.

2017-10-02 Thread Helmut Kudrnovsky
CM Reddy wrote
> Hi Moritz
> 
> I did the steps mentioned in the following and compiled the code
> successfully on Windows 10 machine.
> 
>   *   https://trac.osgeo.org/grass/wiki/CompileOnWindows
> 
> No errors in the error.log file. It created grass executable successfully.
> 
> Found following error in running the grass executable.
> 
> C:\OSGeo4W64\bin>grass73svn.bat
> '""' is not recognized as an internal or external command,
> operable program or batch file.
> Press any key to continue . . .
> 

quoting here C:\OSGeo4W64\bin\grass73svn.bat:

@echo off
rem
#
rem #
rem # GRASS initialization bat script (OSGeo4W)
rem #
rem
#

SET OSGEO4W_ROOT=C:\OSGeo4W64

rem
rem Set environmental variables
rem
call %OSGEO4W_ROOT%\bin\o4w_env.bat
call %OSGEO4W_ROOT%\apps\grass\grass-7.3.svn\etc\env.bat

rem
rem Launch GRASS GIS
rem
"%GRASS_PYTHON%" "%GISBASE%\etc\grass73.py" %*

rem
rem Pause on error
rem
if %ERRORLEVEL% GEQ 1 pause



-
best regards
Helmut
--
Sent from: http://osgeo-org.1560.x6.nabble.com/Grass-Dev-f3991897.html
___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] How to develop on windows.

2017-10-02 Thread Helmut Kudrnovsky
CM Reddy wrote
> Hi Moritz
> 
> I did the steps mentioned in the following and compiled the code
> successfully on Windows 10 machine.
> 
>   *   https://trac.osgeo.org/grass/wiki/CompileOnWindows
> 
> No errors in the error.log file. It created grass executable successfully.
> 
> Found following error in running the grass executable.
> 
> C:\OSGeo4W64\bin>grass73svn.bat
> '""' is not recognized as an internal or external command,
> operable program or batch file.
> Press any key to continue . . .
> 
> 
> Please help me in resoling the above issue.
> 
> - Thanks in advance.
> 
> CM
> 
> On 25-09-2017 23:08, Moritz Lennert wrote:
> On 25/09/17 19:00, CM Reddy wrote:
> Hi All,
> 
> We would like compile and install the Grass source on Windows 10
> machine. Is it possible to set up the environment on Windows 10 and
> develop some modules ?
> 
>If so, please provide the steps to setup on windows machine ? Do we
> need to have any specific IDE for development( like eclipse etc )?
> 
> 
> No special IDE needed. Start with the info at [1] and come back to us if
> you have any questions.
> 
> Moritz
> 
> [1] https://trac.osgeo.org/grass/wiki/CompileOnWindows
> 
> 
> 
> ___
> grass-dev mailing list

> grass-dev@.osgeo

> https://lists.osgeo.org/mailman/listinfo/grass-dev

Please post the content of


C:\OSGeo4W64\bin>grass73svn.bat

How did you invoked it?



-
best regards
Helmut
--
Sent from: http://osgeo-org.1560.x6.nabble.com/Grass-Dev-f3991897.html
___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] How to develop on windows.

2017-10-02 Thread CM Reddy
Hi Moritz

I did the steps mentioned in the following and compiled the code successfully 
on Windows 10 machine.

  *   https://trac.osgeo.org/grass/wiki/CompileOnWindows

No errors in the error.log file. It created grass executable successfully.

Found following error in running the grass executable.



C:\OSGeo4W64\bin>grass73svn.bat
'""' is not recognized as an internal or external command,
operable program or batch file.
Press any key to continue . . .




Please help me in resoling the above issue.

- Thanks in advance.

CM

On 25-09-2017 23:08, Moritz Lennert wrote:
On 25/09/17 19:00, CM Reddy wrote:
Hi All,

We would like compile and install the Grass source on Windows 10
machine. Is it possible to set up the environment on Windows 10 and
develop some modules ?

   If so, please provide the steps to setup on windows machine ? Do we
need to have any specific IDE for development( like eclipse etc )?


No special IDE needed. Start with the info at [1] and come back to us if you 
have any questions.

Moritz

[1] https://trac.osgeo.org/grass/wiki/CompileOnWindows


___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] How to develop on windows.

2017-09-25 Thread Moritz Lennert

On 25/09/17 19:00, CM Reddy wrote:

Hi All,

We would like compile and install the Grass source on Windows 10
machine. Is it possible to set up the environment on Windows 10 and
develop some modules ?

   If so, please provide the steps to setup on windows machine ? Do we
need to have any specific IDE for development( like eclipse etc )?



No special IDE needed. Start with the info at [1] and come back to us if 
you have any questions.


Moritz

[1] https://trac.osgeo.org/grass/wiki/CompileOnWindows

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

[GRASS-dev] How to develop on windows.

2017-09-25 Thread CM Reddy
Hi All,

We would like compile and install the Grass source on Windows 10 
machine. Is it possible to set up the environment on Windows 10 and 
develop some modules ?

  If so, please provide the steps to setup on windows machine ? Do we 
need to have any specific IDE for development( like eclipse etc )?

Thanks in advance

- CM


___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev