File: configure.ac

package info (click to toggle)
cc-tool 0.27-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 436 kB
  • sloc: cpp: 3,954; makefile: 29; sh: 1
file content (26 lines) | stat: -rw-r--r-- 539 bytes parent folder | download
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
dnl Process this file with autoconf to produce a configure script.

AC_PREREQ(2.59)
AC_INIT(cc-tool, 0.26+, george-u@yandex.com)
AM_INIT_AUTOMAKE([no-dependencies foreign subdir-objects])
AM_SILENT_RULES([yes])
AC_CONFIG_MACRO_DIR([m4])
AC_PROG_LIBTOOL
AC_PROG_CXX

BOOST_REQUIRE([1.39])
BOOST_PROGRAM_OPTIONS([mt])
BOOST_SYSTEM([mt])
BOOST_REGEX([mt])
BOOST_FILESYSTEM([mt])
BOOST_FOREACH
BOOST_SMART_PTR
BOOST_STRING_ALGO
BOOST_SIGNALS2
BOOST_CRC

PKG_CHECK_MODULES([LIBUSB], [libusb-1.0 >= 1.0.0])

AC_CONFIG_FILES(Makefile)
AC_OUTPUT