]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.13
authorfred <fred>
Sat, 30 Nov 1996 11:54:25 +0000 (11:54 +0000)
committerfred <fred>
Sat, 30 Nov 1996 11:54:25 +0000 (11:54 +0000)
src/main.cc

index 8e499b0204729b4236a6f9c11b8e7cb9418dcbeb..35f20603bae481460dcfe4a1fbced1bc25e61239 100644 (file)
@@ -11,6 +11,7 @@ long_option_init theopts[] = {
     1, "output", 'o',
     0, "warranty", 'w',
     0, "help", 'h',
+    0, "debug", 'd',
     0,0,0
 };
 
@@ -20,7 +21,10 @@ help()
     cout <<
        "--help, -h             This help\n"
        "--warranty, -w         show warranty & copyright\n"
-       "--output, -o           set default output\n";
+       "--output, -o           set default output\n"
+       "--debug, -d            enable debug output\n"
+       ;
+    
 }
 void notice()
 {
@@ -64,6 +68,9 @@ main (int argc, char **argv)
            help();
            exit(0);
            break;
+       case 'd':
+           set_debug(true);
+           break;
        default:
            assert(false);
            break;