more build options;
authorwenzelm
Thu, 26 Jul 2012 17:17:53 +0200
changeset 495356d4ea2efa64b
parent 49534 5deda0549f97
child 49536 0e4bb86c74fd
more build options;
etc/options
src/Pure/System/build.ML
     1.1 --- a/etc/options	Thu Jul 26 17:16:02 2012 +0200
     1.2 +++ b/etc/options	Thu Jul 26 17:17:53 2012 +0200
     1.3 @@ -27,5 +27,11 @@
     1.4  declare names_short : bool = false
     1.5  declare names_unique : bool = true
     1.6  
     1.7 +declare thy_output_display : bool = false
     1.8 +declare thy_output_quotes : bool = false
     1.9 +declare thy_output_indent : int = 0
    1.10 +declare thy_output_source : bool = false
    1.11 +declare thy_output_break : bool = false
    1.12 +
    1.13  declare timing : bool = false
    1.14  
     2.1 --- a/src/Pure/System/build.ML	Thu Jul 26 17:16:02 2012 +0200
     2.2 +++ b/src/Pure/System/build.ML	Thu Jul 26 17:17:53 2012 +0200
     2.3 @@ -35,6 +35,11 @@
     2.4      |> Unsynchronized.setmp Name_Space.names_long_default (Options.bool options "names_long")
     2.5      |> Unsynchronized.setmp Name_Space.names_short_default (Options.bool options "names_short")
     2.6      |> Unsynchronized.setmp Name_Space.names_unique_default (Options.bool options "names_unique")
     2.7 +    |> Unsynchronized.setmp Thy_Output.display_default (Options.bool options "thy_output_display")
     2.8 +    |> Unsynchronized.setmp Thy_Output.quotes_default (Options.bool options "thy_output_quotes")
     2.9 +    |> Unsynchronized.setmp Thy_Output.indent_default (Options.int options "thy_output_indent")
    2.10 +    |> Unsynchronized.setmp Thy_Output.source_default (Options.bool options "thy_output_source")
    2.11 +    |> Unsynchronized.setmp Thy_Output.break_default (Options.bool options "thy_output_break")
    2.12      |> Unsynchronized.setmp Toplevel.timing (Options.bool options "timing");
    2.13  
    2.14  fun use_theories (options, thys) =