1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2024-12-12 10:04:14 +02:00

Move release build check to src/meson.build.

This allows the C harness to perform release builds which are required for some tests.
This commit is contained in:
David Steele 2022-07-25 09:39:54 -04:00
parent c267ba51b1
commit 79d9884141
2 changed files with 7 additions and 7 deletions

View File

@ -23,13 +23,6 @@ project(
# Selected C compiler
cc = meson.get_compiler('c')
####################################################################################################################################
# Error on release builds since we do not want anyone using meson for production yet
####################################################################################################################################
if get_option('buildtype') != 'debug' and get_option('buildtype') != 'debugoptimized'
error('meson is currently not supported for release builds')
endif
####################################################################################################################################
# OS-specific settings
####################################################################################################################################

View File

@ -1,3 +1,10 @@
####################################################################################################################################
# Error on release builds since we do not want anyone using meson for production yet
####################################################################################################################################
if get_option('buildtype') != 'debug' and get_option('buildtype') != 'debugoptimized'
error('meson is currently not supported for release builds')
endif
####################################################################################################################################
# Write configuration
####################################################################################################################################