File: configure.ac

package info (click to toggle)
mini-buildd 2.5.2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 3,636 kB
  • sloc: python: 9,998; sql: 1,597; sh: 1,470; javascript: 98; lisp: 90; cpp: 70; makefile: 69
file content (16 lines) | stat: -rw-r--r-- 272 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
AC_INIT([mbd-test-cpp],[0.1.0])
AC_PREREQ(2.58)
AC_CONFIG_SRCDIR([src/main/Main.cpp])
AM_INIT_AUTOMAKE([tar-pax])
AC_CONFIG_HEADER(config.h)

AC_PROG_CXX
AC_PROG_LIBTOOL

AC_CONFIG_FILES([
	Makefile
	src/Makefile
	src/mbd-test-cpp/Makefile
	src/main/Makefile
])
AC_OUTPUT