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:
parent
c267ba51b1
commit
79d9884141
@ -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
|
||||
####################################################################################################################################
|
||||
|
@ -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
|
||||
####################################################################################################################################
|
||||
|
Loading…
Reference in New Issue
Block a user