-
Notifications
You must be signed in to change notification settings - Fork 2
/
configure.ac
51 lines (34 loc) · 1.93 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
# 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([Miplib3],[1.3.0],[https://github.com/coin-or-tools/Data-miplib3/issues/new],[coin-or-miplib3],[https://github.com/coin-or-tools/Data-miplib3])
AC_COPYRIGHT([
Copyright 2006 International Business Machines and others.
All Rights Reserved.
This file is part of the open source package Coin 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([*.gz miplib3.cat])
##############################################################################
# Finishing up by writing all the output #
##############################################################################
# Specify the files that configure should generate from template (.in) files.
AC_CONFIG_FILES([Makefile coindatamiplib3.pc])
# Finally, we let configure write all the output...
AC_COIN_FINALIZE