Initialize
[sdk/ide/product.git] / package / base-ide-product.install.windows
1 @ECHO OFF
2 set shortcut_name=Tizen IDE
3 set execute_file=IDE.exe
4 set icon_file=tizen-sdk-ide.ico
5 set program_path=%INSTALLED_PATH%\IDE
6 set execute_path=%program_path%\%execute_file%
7 set icon_path=%program_path%\resources\icons
8
9 echo Setting shortcut...
10 wscript.exe "%MAKESHORTCUT_PATH%" /shortcut:"%shortcut_name%" /target:"%execute_path%" /icon:"%icon_path%\%icon_file%"
11
12 IF %ERRORLEVEL% GTR 0 (
13 EXIT 10
14 )
15
16 EXIT 0