Create source directory for empty projects

Since the preview shows the creation of a source directory and since
there currently is no functionality to add new source paths to a
project, empty projects were effectively unusable after creation
unless you manually created files/directories for them outside
DlangIDE.
This commit is contained in:
default0 2016-01-23 15:39:24 +01:00
parent 6fdb8812c4
commit d69db6a3e6
1 changed files with 3 additions and 3 deletions

View File

@ -355,10 +355,10 @@ class NewProjectDlg : Dialog {
ws.addProject(project);
if (ws.startupProject is null)
ws.startupProject = project;
string srcdir = buildNormalizedPath(pdir, "source");
if (!exists(srcdir))
mkdir(srcdir);
if (!_currentTemplate.srcfile.empty && !_currentTemplate.srccode.empty) {
string srcdir = buildNormalizedPath(pdir, "source");
if (!exists(srcdir))
mkdir(srcdir);
string srcfile = buildNormalizedPath(srcdir, _currentTemplate.srcfile);
write(srcfile, _currentTemplate.srccode);
}