aboutsummaryrefslogtreecommitdiff
path: root/meson.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2015-11-04 00:36:07 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2015-11-04 00:36:07 +0200
commit63e803ae0f791c1c106d3616790eb9b32e1720b3 (patch)
tree73be26b43a14294909c624aa2df1218691581ca7 /meson.py
parentcc19bf0f45f9918ed3fa16d69932171be5793fa0 (diff)
downloadmeson-63e803ae0f791c1c106d3616790eb9b32e1720b3.zip
meson-63e803ae0f791c1c106d3616790eb9b32e1720b3.tar.gz
meson-63e803ae0f791c1c106d3616790eb9b32e1720b3.tar.bz2
Made shared the default libtype as it is faster for daily development.
Diffstat (limited to 'meson.py')
-rwxr-xr-xmeson.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.py b/meson.py
index a9e5c70..1720117 100755
--- a/meson.py
+++ b/meson.py
@@ -66,7 +66,7 @@ parser.add_argument('--werror', action='store_true', dest='werror', default=Fals
parser.add_argument('--layout', choices=layouts, dest='layout', default='mirror',\
help='Build directory layout.')
parser.add_argument('--default-library', choices=libtypelist, dest='default_library',
- default='static', help='Default library type.')
+ default='shared', help='Default library type.')
parser.add_argument('--warnlevel', default=default_warning, dest='warning_level', choices=warning_levels,\
help='Level of compiler warnings to use (larger is more, default is %(default)s)')
parser.add_argument('--cross-file', default=None, dest='cross_file',