[Title] Added 'tizen-sdk' startup - user's option params in windows
authorgyeongseok.seo <gyeongseok.seo@samsung.com>
Mon, 22 Jul 2013 11:17:41 +0000 (20:17 +0900)
committergyeongseok.seo <gyeongseok.seo@samsung.com>
Mon, 22 Jul 2013 11:17:41 +0000 (20:17 +0900)
[Desc.]
[Issue]

Change-Id: I43c0aedddf5375def8444b0e91f2cbde6c0e7581

org.tizen.base.feature/IDE.bat
org.tizen.base.feature/IDE.nsi
org.tizen.base.feature/rootfiles_for_windows/IDE.exe

index b7d93df..097464b 100755 (executable)
@@ -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
index ad689e5..d36931c 100644 (file)
@@ -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
index ada43f1..667620b 100755 (executable)
Binary files a/org.tizen.base.feature/rootfiles_for_windows/IDE.exe and b/org.tizen.base.feature/rootfiles_for_windows/IDE.exe differ