(qb) Make C++ compiler optional in non-Win32 builds

This commit is contained in:
Higor Eurípedes 2015-06-16 20:46:54 -03:00
parent 54240500f0
commit 6e3662953d

View File

@ -1,2 +1,7 @@
USE_LANG_C="yes"
USE_LANG_CXX="yes"
# C++ compiler is optional in other platforms supported by ./configure
if [ "$OS" = 'Win32' ]; then
USE_LANG_CXX="yes"
fi