root/vtcross/trunk/configure.ac @ 416

Revision 416, 1.6 KB (checked in by trnewman, 15 years ago)

Moving examples around to a more appropiate directory.

Line 
1dnl Copyright 2009 Virginia Polytechnic Institute and State University 
2dnl
3dnl Licensed under the Apache License, Version 2.0 (the "License");
4dnl you may not use this file except in compliance with the License.
5dnl You may obtain a copy of the License at
6dnl
7dnl http://www.apache.org/licenses/LICENSE-2.0
8dnl
9dnl Unless required by applicable law or agreed to in writing, software
10dnl distributed under the License is distributed on an "AS IS" BASIS,
11dnl WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12dnl See the License for the specific language governing permissions and
13dnl limitations under the License.
14
15
16AC_INIT([cross], [0.1.1])
17AM_INIT_AUTOMAKE([cross], [0.1.1])
18AM_CONFIG_HEADER([src/include/vtcross/config.h])
19
20AC_CONFIG_MACRO_DIR([m4])
21
22AC_PROG_CC
23AC_PROG_CXX
24AC_PROG_SWIG
25AC_PROG_LIBTOOL
26AC_PROG_INSTALL
27
28AC_DISABLE_STATIC
29AM_PATH_PYTHON(2.6)
30SWIG_ENABLE_CXX
31SWIG_PYTHON
32
33AC_LANG_PUSH([C])
34AC_CHECK_LIB([sqlite3], [sqlite3_open], [], [AC_MSG_ERROR([Cannot find sqlite3 library!])])
35AC_LANG_POP
36
37AC_CONFIG_FILES(Makefile doc/Makefile src/Makefile src/shell/Makefile
38          src/libvtcross/Makefile src/cognitive_engines/Makefile
39          src/cognitive_engines/CBR_CE/Makefile
40          src/cognitive_engines/OSSIE_DEMO_CE/Makefile
41          src/cognitive_engines/DSA_CE/Makefile
42          src/policy_engines/Makefile src/service_management_layer/Makefile
43          src/lib/tinyxml/Makefile  src/lib/socketcomm/Makefile src/include/Makefile
44          src/include/vtcross/Makefile src/include/tinyxml/Makefile
45          src/lib/Makefile src/libvtcross/swig/Makefile)
46AC_OUTPUT
47
Note: See TracBrowser for help on using the browser.