--- title: Projects header-includes: --- Three project formats are supported. For all the formats a single widget is used to display the source files list and the configurations, the [project inspector](widgets_project_inspector.html). Project properties are edited in specific widgets. ## DUB Dexed handles [DUB](http://code.dlang.org/getting_started) projects. DUB [JSON format](http://code.dlang.org/package-format?lang=json) format is fully supported. DUB [SDL](http://code.dlang.org/package-format?lang=sdl) format is supported in read-only mode. The widget used to edit the properties is the [DUB project editor](widgets_dub_project_editor.html). The option editor exposes a [category for DUB](options_dub_build.html). The options specified in this category are applied each time a project is compiled. ## Makefiles Makefiles can be opened as projects. The rules found in the makefile are interpreted as configurations. Source files are detected using a list of prefixes. Files located in a sub folder and that start with one of the prefix is then displayed in the project inspector. Custom prefixes can be specified in the _Options_ menu, category _Makefile projects_. Default prefixes are "src", "import", and "include". While not very useful for D, Makefile projects allow to use dexed with other languages. Working IDE features are then limited to - Compile project - The [messages](widgets_messages.html) reported by _make_ can be clicked to open new files - [Custom tools](widgets_custom_tools.html) can use symbolic strings, allowing for example to setup a custom linter for all the sources detected using the prefixes - [Searches](widgets_search.html) in the whole project - Text completions (based on work-splitting) - Integration in [project groups](widgets_project_groups.html) Note that the dialog used to open a project will only recognize "Makefile" and files with the ".mak" extension. ## DEXED format The DEXED format (previously called _native format_ then _ce projects_) is based on DMD command line interface. The widget used to edit the properties is the [DEXED project editor](widgets_dexed_project_editor.html) (the format is detailed in this page). ## Menu reference - **"New project"**: Closes and creates a new project (either with the native format or a DUB project). A warning may be displayed if the current project is not yet saved. - **"Open project"**: Opens a project from a dialog. - **"Open recent"**: Displays the list of the most recently used projects. - **"Close project"**: Closes the current project. A warning may be displayed if the current project is yet not saved. - **"Save project"**: Saves the current project. - **"Save project as"**: Saves the current project from a dialog. - **"Add project to group"**: Adds this project to the project group. See also the page dedicated to the [project groups](widgets_project_groups.html). - **"Project editor"**: Displays widget used to edit the project properties,in respect with the format (CE or DUB). - **"Edit project file"**: Opens the project file in a new source editor. When saved from a source editor, a project file is directly reloaded. - **"View project command line"**: Displays the list of switches and arguments, as they would be passed to the compiler (or the build tool) when compiling. - **"View in mini explorer"**: Expands the [mini-explorer](widgets_mini_explorer.html) tree on the folder that contains the project file. - **"Verify project with Dscanner"**: Performs some static checks on each source of the project and using [Dscanner](https://github.com/dlang-community/D-Scanner). - **"Compile project"**: Compiles the project using the current configuration. - **"Compile and run project"**: Compiles the project using the current configuration and executes the output when the binary produced is executable. - **"Compile and run project..."**: Ditto. Before the execution of the binary an input query dialog lets you pass options to the process. - **"Check semantics"**: Like _Compile project_ but only checks the program semantics and does not generate object files. - **"Run project"**: Executes the project output when the binary produced is executable. - **"Run project..."**: Ditto. Before the execution, an input query dialog lets you specify switches and arguments to the process. - **"Test project"**: Only for DUB projects. Invoke `dub test` using the configuration selected in the [project inspector](widgets_project_inspector.html). ## Other build tools It's possible to use the [custom tools](widgets_custom_tools.html) to call other build tools. For example to call _make_, add a new tool with _make_ as _executable_ and sets the _workingDirectory_ to the folder that contains the makefile. To specify a special target, such as _release_, add _release_ in the parameters editor. To get _make_ output in the messages, check _popUsesPipes_ in the tool options.