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
7e2c1e6a
Commit
7e2c1e6a
authored
Apr 22, 2021
by
Taeer Bar-Yam
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add --disable-tests configure option
parent
6304782e
Changes
2
Show 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 @
7e2c1e6a
ACLOCAL_AMFLAGS
=
-I
m4
SUBDIRS
=
lib
tinytest tests
SUBDIRS
=
lib
if
BUILDDOC
SUBDIRS
+=
doc
...
...
@@ -11,6 +11,10 @@ if BUILDEXAMPLES
SUBDIRS
+=
examples
endif
if
BUILDTESTS
SUBDIRS
+=
tinytest tests
endif
.PHONY
:
dist-rpm
dist-rpm
:
distcheck
...
...
configure.ac
View file @
7e2c1e6a
...
...
@@ -123,6 +123,18 @@ doexamples=yes
AM_CONDITIONAL(BUILDEXAMPLES, test x$doexamples = xyes)
dotests=yes
AC_ARG_ENABLE(tests,
AS_HELP_STRING([--disable-tests], [Disable building of the tests]),
[if test "$enableval" = "no"; then dotests="no"; fi],
[
dotests=yes
]
)
AM_CONDITIONAL(BUILDTESTS, test x$dotests = xyes)
dnl Check for MinGW. Workaround for libtool's DLL_EXPORT stupidity.
case "$target" in
...
...
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