enable third-party for asio_lib too
Since this library uses the third-party subdir, make sure we auto-enable it when that lib is turned on.
This commit is contained in:
parent
90bcdb0dda
commit
19309823aa
|
@ -464,11 +464,12 @@ fi
|
|||
|
||||
AM_CONDITIONAL([ENABLE_EXAMPLES], [ test "x${enable_examples}" = "xyes" ])
|
||||
|
||||
# third-party only be built if either enable_examples or enable_app is
|
||||
# yes
|
||||
# third-party only be built when needed
|
||||
|
||||
enable_third_party=no
|
||||
if test "x${enable_examples}" = "xyes" || test "x${enable_app}" = "xyes"; then
|
||||
if test "x${enable_examples}" = "xyes" ||
|
||||
test "x${enable_app}" = "xyes" ||
|
||||
test "x${enable_asio_lib}" = "xyes"; then
|
||||
enable_third_party=yes
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in New Issue