From: gyeongseok.seo Date: Mon, 22 Jul 2013 11:17:41 +0000 (+0900) Subject: [Title] Added 'tizen-sdk' startup - user's option params in windows X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5bee3ffacc29086e19fb25cd3c69d7c4a974d804;p=sdk%2Fide%2Fproduct.git [Title] Added 'tizen-sdk' startup - user's option params in windows [Desc.] [Issue] Change-Id: I43c0aedddf5375def8444b0e91f2cbde6c0e7581 --- diff --git a/org.tizen.base.feature/IDE.bat b/org.tizen.base.feature/IDE.bat index b7d93df..097464b 100755 --- a/org.tizen.base.feature/IDE.bat +++ b/org.tizen.base.feature/IDE.bat @@ -23,4 +23,4 @@ if exist %ide_path%\init ( set eclipse_options= ) -eclipse.exe %eclipse_options% \ No newline at end of file +eclipse.exe %eclipse_options% %* \ No newline at end of file diff --git a/org.tizen.base.feature/IDE.nsi b/org.tizen.base.feature/IDE.nsi index ad689e5..d36931c 100644 --- a/org.tizen.base.feature/IDE.nsi +++ b/org.tizen.base.feature/IDE.nsi @@ -7,12 +7,14 @@ ;-------------------------------- +!include FileFunc.nsh + ; The name of the installer Name "IDE" -Icon "tizen-ide.ico" +Icon "rootfiles/resources/icons/tizen-ide.ico" ; icon file /org.tizen.base.feature/rootfiles/resources/icons/tizen-ide.ico ; The file to write -OutFile "IDE.exe" +OutFile "rootfiles_for_windows/IDE.exe" ; IDE.exe file /org.tizen.base.feature/rootfiles_for_windows/ ; The default installation directory InstallDir $EXEDIR @@ -41,5 +43,6 @@ Section "" ;No components page, name is not important File IDE.bat ; Execute batch file without opening a dos box - nsExec::Exec '$INSTDIR\IDE.bat' + ${GetParameters} $R0 + nsExec::Exec '"$INSTDIR\IDE.bat" $R0' SectionEnd ; end the section diff --git a/org.tizen.base.feature/rootfiles_for_windows/IDE.exe b/org.tizen.base.feature/rootfiles_for_windows/IDE.exe index ada43f1..667620b 100755 Binary files a/org.tizen.base.feature/rootfiles_for_windows/IDE.exe and b/org.tizen.base.feature/rootfiles_for_windows/IDE.exe differ