Build project in debug by default instead of debugoptimized.
This commit is contained in:
parent
ab1ade53e3
commit
f2369c6819
|
@ -446,7 +446,7 @@ class MesonBuilder(Builder):
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def build_type(self):
|
def build_type(self):
|
||||||
return 'release' if option('make_release') else 'debugoptimized'
|
return 'release' if option('make_release') else 'debug'
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def strip_option(self):
|
def strip_option(self):
|
||||||
|
|
Loading…
Reference in New Issue