AvalonStudio.Toolchains.Clang.ClangGCCToolchain.GetConfigurationPages C# (CSharp) Method

GetConfigurationPages() public method

public GetConfigurationPages ( IProject project ) : IList
project IProject
return IList
		public override IList<object> GetConfigurationPages(IProject project)
		{
			var result = new List<object>();

			result.Add(new CompileSettingsFormViewModel(project));
			result.Add(new LinkerSettingsFormViewModel(project));

			return result;
		}