public void WriteLibraries() { RSXOptions options = project.CompilerOptions; WriteComment(" SWC Include Libraries "); WriteList("includeLibraries", options.IncludeLibraries); WriteComment(" SWC Libraries "); WriteList("libraryPaths", options.LibraryPaths); WriteComment(" External Libraries "); WriteList("externalLibraryPaths", options.ExternalLibraryPaths); }
public void WriteBuildOptions() { WriteComment(" Build options "); WriteStartElement("build"); RSXOptions options = project.CompilerOptions; WriteOption("customSDK", options.CustomSDK); WriteEndElement(); }
public void ReadBuildOptions() { RSXOptions options = project.CompilerOptions; ReadStartElement("build"); while (Name == "option") { MoveToFirstAttribute(); switch (Name) { case "customSDK": options.CustomSDK = Value; break; } Read(); } ReadEndElement(); }