diff --git a/documentation/trunk/eiffelstudio/Tutorials/executing-system-within-and-without-eiffelstudio.wiki b/documentation/trunk/eiffelstudio/Tutorials/executing-system-within-and-without-eiffelstudio.wiki index 4f7ecfb8..72084f1f 100644 --- a/documentation/trunk/eiffelstudio/Tutorials/executing-system-within-and-without-eiffelstudio.wiki +++ b/documentation/trunk/eiffelstudio/Tutorials/executing-system-within-and-without-eiffelstudio.wiki @@ -2,7 +2,7 @@ [[Property:weight|5]] [[Property:uuid|8256398e-d1a9-0471-664a-3225c7dfb306]] To complete this study of the compilation process let's see a few more properties of how you can execute an Eiffel system, both in EiffelStudio and as a compiled system that you deliver to its users, who may need to run it without EiffelStudio. -
Project --> Project Settings --> Debug/Profile --> Program Execution
The second is through the argument dialog which can be opened by right-clicking on any of the debugging or program execution buttons on the main toolbar. The latter is more convenient for quick and easy access to execution arguments.
-
project_directory/EIFGENs/target_name/F_code
-where project_directory is the project's directory and target_name ist the name of the target. The name of the executable file is
-
-system_name.exe
-where system_name is the name that you have assigned to your system in the project settings (reflected in the ECF file).
+where `project_directory` is the project's directory and `target_name` is the name of the target. The name of the executable file is `system_name` (or `system_name.exe` on Windows) where `system_name` is the name that you have assigned to your system in the project settings (reflected in the ECF file).
-The target of the Guided Tour system is classic and the name is simple, so you can locate simple.exe in EIFGENs/classic/F_code for your project, and run it stand-alone if you like.
+The target of the Guided Tour system is `classic` and the name is `simple`, so you can locate `simple.exe` (or `simple.exe` on Windows) in `EIFGENs/classic/F_code` for your project, and run it stand-alone if you like.
-If you run the system from a command line, and it requires arguments (simple doesn't), you will provide the appropriate arguments after the command name:
+If you run the system from a command line, and it requires arguments (`simple` doesn't), you will provide the appropriate arguments after the command name:
-system_name.exe ... arg ...
+system_name ... arg ...
Because various platforms have different conventions, "relative paths" referenced in your system will mean something different under Unix/Linux, where they relate to the directory from which the command is launched, and under Windows, where they relate to the application's directory.
-system_name.melted file in project_directory /EIFGENs/target_name/W_code.
-