Build project in debug by default instead of debugoptimized.

This commit is contained in:
Matthieu Gautier
2019-09-04 17:10:30 +02:00
parent ab1ade53e3
commit f2369c6819

View File

@ -446,7 +446,7 @@ class MesonBuilder(Builder):
@property
def build_type(self):
return 'release' if option('make_release') else 'debugoptimized'
return 'release' if option('make_release') else 'debug'
@property
def strip_option(self):