Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libconfig
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
libconfig
Commits
a0301bde
Commit
a0301bde
authored
Apr 28, 2018
by
Fabrice Fontaine
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add --disable-doc option
Signed-off-by:
Fabrice Fontaine
<
fontaine.fabrice@gmail.com
>
parent
04a3674f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
1 deletion
+17
-1
Makefile.am
Makefile.am
+5
-1
configure.ac
configure.ac
+12
-0
No files found.
Makefile.am
View file @
a0301bde
ACLOCAL_AMFLAGS
=
-I
m4
ACLOCAL_AMFLAGS
=
-I
m4
SUBDIRS
=
lib doc tinytest tests
SUBDIRS
=
lib tinytest tests
if
BUILDDOC
SUBDIRS
+=
doc
endif
if
BUILDEXAMPLES
if
BUILDEXAMPLES
SUBDIRS
+=
examples
SUBDIRS
+=
examples
...
...
configure.ac
View file @
a0301bde
...
@@ -99,6 +99,18 @@ docxx=yes
...
@@ -99,6 +99,18 @@ docxx=yes
AM_CONDITIONAL(BUILDCXX, test x$docxx = xyes)
AM_CONDITIONAL(BUILDCXX, test x$docxx = xyes)
dodoc=yes
AC_ARG_ENABLE(doc,
AS_HELP_STRING([--disable-doc], [Disable building of the documentation]),
[if test "$enableval" = "no"; then dodoc="no"; fi],
[
dodoc=yes
]
)
AM_CONDITIONAL(BUILDDOC, test x$dodoc = xyes)
doexamples=yes
doexamples=yes
AC_ARG_ENABLE(examples,
AC_ARG_ENABLE(examples,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment