-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* configure.ac: Add option disable-documentation and define HAVE_TCL_H if tcl8.5/.tcl.h is found. * include/Makefile.am: Compile qdft_wrap.cxx iff. HAVE_TCL_H is defined.
- Loading branch information
Showing
2 changed files
with
32 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2011, 2012 Johan Oudinet <[email protected]> | ||
# Copyright (C) 2011, 2012, 2014 Johan Oudinet <[email protected]> | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
|
@@ -19,22 +19,25 @@ AM_CPPFLAGS = -I$(srcdir)/../include $(BOOST_CPPFLAGS) | |
|
||
lib_LTLIBRARIES = libqdftgraph.la | ||
|
||
libqdftgraph_la_SOURCES = \ | ||
qdft/action.hh \ | ||
qdft/graph.hh \ | ||
qdft/manager.hh \ | ||
qdft/manager.hxx \ | ||
qdft/qdft.hh \ | ||
qdft/qdft.hxx \ | ||
qdft/types.hh \ | ||
qdft/qdft_wrap.cxx | ||
libqdftgraph_la_SOURCES = \ | ||
qdft/action.hh \ | ||
qdft/graph.hh \ | ||
qdft/manager.hh \ | ||
qdft/manager.hxx \ | ||
qdft/qdft.hh \ | ||
qdft/qdft.hxx \ | ||
qdft/types.hh | ||
|
||
if HAVE_TCL_H | ||
libqdftgraph_la_SOURCES += qdft/qdft_wrap.cxx | ||
endif | ||
|
||
libqdftgraph_la_LDFLAGS = -no-undefined | ||
|
||
nobase_include_HEADERS = \ | ||
qdft/qdft.i \ | ||
qdft/libqdftgraph.cs \ | ||
qdft/libqdftgraphPINVOKE.cs \ | ||
qdft/dataManagers.cs \ | ||
qdft/mode_type.cs \ | ||
nobase_include_HEADERS = \ | ||
qdft/qdft.i \ | ||
qdft/libqdftgraph.cs \ | ||
qdft/libqdftgraphPINVOKE.cs \ | ||
qdft/dataManagers.cs \ | ||
qdft/mode_type.cs \ | ||
qdft/SWIGTYPE_p_std__ostream.cs |