Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
The Directories/Conditionals page of the Project Options dialog box lets you specify the location of files needed to compile, link, and distribute your Delphi application.
Directories
Output directory Specifies where the compiler should put the Delphi compiled units and the executable file.
Unit output directory Specifies a separate directory to contain the .dcu files.
Note: .dcp files can be relocated by setting the DCP output directory path on the library page of the Tools|Environment Options dialog box.
Search path Specifies the location of your source files. Only those files on the compiler's search path or the library search path will be included in the build. If you try to build your project with a file not on the search path, you will receive a compiler error. You must include the entire search path.
If you check Use Debug DCUs on the Compiler page of the Project|Options, the Debug DCU path (Tools|Debugger options|General) is prepended to this search path.
Debug source path Search path for the debugger. The debugger searches paths defined by the compiler by default. If the directory structure has changed since the last compile, a path can be entered here to include a file in the debugging session.
BPL output directory Specifies where the compiler puts generated package files (bpl files).
DCP output directory Specifies where your .dcp file is placed at compilation time. If left blank, the global dcp output directory specified in the Tools|Environment Options Library page is used instead.
Conditionals
Conditional defines Symbols referenced in conditional compiler directives. You can separate multiple defines with semicolons.
Aliases
Unit aliases Useful for backwards compatibility. Specify alias names for units that may have changed names or were merged into a single unit. The format is <oldunit>=<newunit> (for example, QForms=QXforms). You can separate multiple aliases with semicolons.
The default value for Delphi is:
WinTypes=Windows;WinProcs=Windows.Default.
Guidelines for search paths
Use the following guidelines when entering directory names into the Search Path edit box:
Separate multiple directory path names with a semicolons.
WhiteSpace before and after the semicolon is allowed but not required.
Relative and absolute path names are allowed, including path names relative to the current position.
if not Programming = 'Severe Migraine' then
ShowMessage('Eureka!');