tools/Makefile.am
author Alpar Juttner <alpar@cs.elte.hu>
Thu, 09 Sep 2010 15:55:00 +0200
changeset 900 659ba4805a48
parent 526 28b154307c0d
permissions -rw-r--r--
Make CMAKE config more consistent with configure.ac (#390)

- CMAKE_BUILD_TYPE is Release by deafult
- The same set of warnings are used when compiling with gcc
     1 EXTRA_DIST += \
     2 	tools/CMakeLists.txt
     3 
     4 if WANT_TOOLS
     5 
     6 bin_PROGRAMS += \
     7 	tools/dimacs-solver \
     8 	tools/dimacs-to-lgf \
     9 	tools/lgf-gen
    10 
    11 dist_bin_SCRIPTS += tools/lemon-0.x-to-1.x.sh
    12 
    13 endif WANT_TOOLS
    14 
    15 tools_dimacs_solver_SOURCES = tools/dimacs-solver.cc
    16 tools_dimacs_to_lgf_SOURCES = tools/dimacs-to-lgf.cc
    17 tools_lgf_gen_SOURCES = tools/lgf-gen.cc