Skip to content
This repository has been archived by the owner on Dec 14, 2021. It is now read-only.

Commit

Permalink
Add help UI for additional Clang options
Browse files Browse the repository at this point in the history
  • Loading branch information
mlangkabel committed Oct 4, 2017
1 parent 5ad7b51 commit 4e38667
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 12 deletions.
39 changes: 27 additions & 12 deletions SourcetrailExtension/Wizard/ProjectSetupWindow.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions SourcetrailExtension/Wizard/ProjectSetupWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -531,5 +531,14 @@ private void UpdateCreateButtonEnabled()

buttonCreate.Enabled = anythingChecked;
}

private void buttonClangOptionsHelp_Click(object sender, EventArgs e)
{
MessageBox.Show(
"Optional: Specify clang options that will be added to each compile command in your compilation database. " +
"\nFor example add \"-ferror-limit=0\" to disable clang's error limit for emitting diagnostics.",
"Help: Clang Options"
);
}
}
}

0 comments on commit 4e38667

Please sign in to comment.