-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathconfigure.ac
More file actions
50 lines (45 loc) · 1.24 KB
/
configure.ac
File metadata and controls
50 lines (45 loc) · 1.24 KB
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
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/calofitting/Makefile
subsystems/example/Makefile
subsystems/filetransfer/Makefile
subsystems/globalQA/Makefile
subsystems/intt/Makefile
subsystems/inttrawhit/Makefile
subsystems/jets/Makefile
subsystems/kfparticle/Makefile
subsystems/micromegas/Makefile
subsystems/mvtx/Makefile
subsystems/mvtxrawhit/Makefile
subsystems/siliconseeds/Makefile
subsystems/tpc/Makefile
subsystems/tpclasers/Makefile
subsystems/tpcrawhit/Makefile
subsystems/tpcseeds/Makefile
subsystems/tpcsil/Makefile
subsystems/tracking/Makefile
subsystems/vertex/Makefile
])
AC_OUTPUT