-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfigure.ac
52 lines (35 loc) · 2.03 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Copyright (C) 2006 International Business Machines.
# All Rights Reserved.
# This file is distributed under the Eclipse Public License.
# Author: Andreas Waechter IBM 2006-04-13
#############################################################################
# Names and other basic things #
#############################################################################
AC_INIT([Sample],[1.3.0],[https://github.com/coin-or-tools/Data-Sample/issues/new],[coin-or-sample],[https://github.com/coin-or-tools/Data-Sample])
AC_COPYRIGHT([
Copyright 2006 International Business Machines and others.
All Rights Reserved.
This file is part of the open source package BuildTools which is distributed
under the Eclipse Public License.])
# List one file in the package so that the configure script can test whether
# the package is actually there.
AC_CONFIG_SRCDIR(configure.ac)
# Do some generic initialization work.
AC_COIN_INITIALIZE
# Check for libz. The hidden assumption is that if libz is present, code will
# use it to read compressed (.gz) files. If it's not present, or disabled with
# --disable-zlib, uncompressed copies of compressed files will be created when
# make is run.
AC_COIN_CHK_ZLIB
#############################################################################
# Specify the data files #
#############################################################################
AC_COIN_EXAMPLE_FILES([*.mps *.mps.gz afiro.* *.lp galenet.mps *.block])
AC_COIN_EXAMPLE_FILES([*.dec input.130 app0110.* bug.time app0110R.* bug.*])
#############################################################################
# Finish up by writing all the output #
#############################################################################
# Specify the files that configure should generate from template (.in) files.
AC_CONFIG_FILES([Makefile coindatasample.pc])
# Finally, we let configure write all the output ...
AC_COIN_FINALIZE