forked from guanlisheng/wxsqliteplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
65 lines (41 loc) · 1.54 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
##########################################################################
AC_PREREQ(2.53)
AC_INIT([wxSQLitePlus], 0.3.6, [[email protected]])
##########################################################################
AC_CONFIG_SRCDIR([src/wxsqliteplusapp.cpp])
AC_CONFIG_AUX_DIR([auxd])
AC_CONFIG_MACRO_DIR([m4])
##########################################################################
# Standard Checks
AC_CANONICAL_SYSTEM
##########################################################################
# Checks for programs
AC_PROG_CXX
AC_PROG_CC
AC_PROG_CXXCPP
AC_PROG_CPP
AC_PROG_RANLIB
AC_PROG_INSTALL
#AC_PROG_LIBTOOL
##########################################################################
# Checks for compilation model
AC_SYS_LARGEFILE
# Checks C++11
AX_CXX_COMPILE_STDCXX_11([noext],[mandatory])
##########################################################################
# Add wxConfig Options to Configure
AM_OPTIONS_WXCONFIG
AM_OPTIONS_WXPRESETS
AM_WXPRESETS_FULL([2.9.4], [html, net, aui, adv, qa, webview, stc])
##########################################################################
# Process standard bakefile
AC_BAKEFILE([m4_include(m4/autoconf_inc.m4)])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
##########################################################################
AM_WXPRESETS_MSG_BEGIN
AM_WXPRESETS_MSG
AM_WXPRESETS_MSG_END
##########################################################################