Changeset View
Changeset View
Standalone View
Standalone View
Mk/Uses/meson.mk
| Show First 20 Lines • Show All 45 Lines • ▼ Show 20 Lines | |||||
| # strips it before it goes to the log, but Samurai does not, so we | # strips it before it goes to the log, but Samurai does not, so we | ||||
| # might end up with ANSI escape sequences in the logs. | # might end up with ANSI escape sequences in the logs. | ||||
| CONFIGURE_ARGS+= -Db_colorout=never | CONFIGURE_ARGS+= -Db_colorout=never | ||||
| # meson has it own strip mechanic | # meson has it own strip mechanic | ||||
| INSTALL_TARGET= install | INSTALL_TARGET= install | ||||
| # should we have strip separate from WITH_DEBUG? | # should we have strip separate from WITH_DEBUG? | ||||
| . if defined(WITH_DEBUG) | . if defined(_WITH_DEBUG) | ||||
| CONFIGURE_ARGS+= --buildtype debug | CONFIGURE_ARGS+= --buildtype debug | ||||
| . elif defined(WITH_DEBUGINFO) | . elif defined(_WITH_DEBUGINFO) | ||||
| CONFIGURE_ARGS+= --buildtype debugoptimized | CONFIGURE_ARGS+= --buildtype debugoptimized | ||||
| . else | . else | ||||
| CONFIGURE_ARGS+= --buildtype release \ | CONFIGURE_ARGS+= --buildtype release \ | ||||
| --optimization plain \ | --optimization plain \ | ||||
| --strip | --strip | ||||
| . endif | . endif | ||||
| HAS_CONFIGURE= yes | HAS_CONFIGURE= yes | ||||
| Show All 19 Lines | |||||