mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
Add install script for editor templates and code style
This commit is contained in:
parent
a30cf2923c
commit
58909a1c21
19
editors/QtCreator/install-win.bat
Normal file
19
editors/QtCreator/install-win.bat
Normal file
@ -0,0 +1,19 @@
|
||||
@ECHO OFF
|
||||
SET CREATOR=%APPDATA%\QtProject\qtcreator
|
||||
SET WIZARDS=%CREATOR%\templates\wizards
|
||||
SET CODESTYLES=%CREATOR%\codestyles\cpp
|
||||
IF NOT EXIST "%WIZARDS%" (
|
||||
mkdir "%WIZARDS%"
|
||||
)
|
||||
|
||||
IF NOT EXIST "%TEMPLATES%\qgis" (
|
||||
mklink /J "%TEMPLATES%\qgis" %CD%\templates\wizards\qgis
|
||||
)
|
||||
|
||||
IF NOT EXIST "%CODESTYLES%" (
|
||||
mkdir "%COESTYLES%"
|
||||
)
|
||||
|
||||
IF NOT EXIST "%CODESTYLES%\qgis_code_style.xml" (
|
||||
mklink "%CODESTYLES%\qgis_code_style.xml" %CD%\qgis_code_style.xml
|
||||
)
|
Loading…
x
Reference in New Issue
Block a user