mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
20 lines
454 B
Batchfile
20 lines
454 B
Batchfile
@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 "%WIZARDS%\qgis" (
|
|
mklink /J "%WIZARDS%\qgis" %CD%\templates\wizards\qgis
|
|
)
|
|
|
|
IF NOT EXIST "%CODESTYLES%" (
|
|
mkdir "%CODESTYLES%"
|
|
)
|
|
|
|
IF NOT EXIST "%CODESTYLES%\qgis_code_style.xml" (
|
|
mklink "%CODESTYLES%\qgis_code_style.xml" %CD%\qgis_code_style.xml
|
|
)
|