demo/Makefile.am
author Balazs Dezso <deba@inf.elte.hu>
Tue, 30 Sep 2008 20:53:18 +0200
changeset 290 f6899946c1ac
parent 146 4b42aa24ce12
child 414 5a7dbeaed70e
permissions -rw-r--r--
Simplifying exceptions

- Using asserts instead of exceptions for unitialized parameters
- Only the IO exceptions are used in the lemon
- DataFormatError is renamed to FormatError
- The IoError is used for file access errors
     1 EXTRA_DIST += \
     2 	demo/CMakeLists.txt \
     3 	demo/digraph.lgf
     4 
     5 if WANT_DEMO
     6 
     7 noinst_PROGRAMS += \
     8 	demo/arg_parser_demo \
     9 	demo/graph_to_eps_demo \
    10 	demo/lgf_demo
    11 
    12 endif WANT_DEMO
    13 
    14 demo_arg_parser_demo_SOURCES = demo/arg_parser_demo.cc
    15 demo_graph_to_eps_demo_SOURCES = demo/graph_to_eps_demo.cc
    16 demo_lgf_demo_SOURCES = demo/lgf_demo.cc