-
Notifications
You must be signed in to change notification settings - Fork 25
/
configure.ac
45 lines (40 loc) · 1.08 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
AC_INIT(qahtml,[1.00])
AC_CONFIG_SRCDIR([configure.ac])
AM_INIT_AUTOMAKE
AC_PROG_CXX(CC g++)
LT_INIT([disable-static])
case $CXX in
clang++)
CXXFLAGS="$CXXFLAGS -Wall -Werror -Wextra -Wshadow -Wno-deprecated-declarations"
;;
*g++)
CXXFLAGS="$CXXFLAGS -Wall -Werror -pedantic -Wextra -Wshadow -Wno-deprecated-declarations"
;;
esac
CINTDEFS=" -noIncludePaths -inlineInputHeader"
AC_SUBST(CINTDEFS)
dnl PLEASE USE ALPHABETICAL ORDER FOR THE MAKEFILE LIST
dnl otherwise noone will be able to find your subsystem
AC_CONFIG_FILES([
Makefile
client/Makefile
database/Makefile
subsystems/Makefile
subsystems/bco/Makefile
subsystems/calo/Makefile
subsystems/example/Makefile
subsystems/globalQA/Makefile
subsystems/intt/Makefile
subsystems/inttrawhit/Makefile
subsystems/jets/Makefile
subsystems/micromegas/Makefile
subsystems/mvtx/Makefile
subsystems/mvtxrawhit/Makefile
subsystems/siliconseeds/Makefile
subsystems/tpc/Makefile
subsystems/tpcrawhit/Makefile
subsystems/tpcseeds/Makefile
subsystems/tpcsil/Makefile
subsystems/vertex/Makefile
])
AC_OUTPUT