mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Reported-by: Michael Paquier Discussion: https://postgr.es/m/ZZKTDPxBBMt3C0J9@paquier.xyz Backpatch-through: 12
		
			
				
	
	
		
			42 lines
		
	
	
		
			758 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			758 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
# Copyright (c) 2022-2024, PostgreSQL Global Development Group
 | 
						|
 | 
						|
isn_sources = files(
 | 
						|
  'isn.c',
 | 
						|
)
 | 
						|
 | 
						|
if host_system == 'windows'
 | 
						|
  isn_sources += rc_lib_gen.process(win32ver_rc, extra_args: [
 | 
						|
    '--NAME', 'isn',
 | 
						|
    '--FILEDESC', 'isn - data types for international product numbering standards',])
 | 
						|
endif
 | 
						|
 | 
						|
isn = shared_module('isn',
 | 
						|
  isn_sources,
 | 
						|
  kwargs: contrib_mod_args,
 | 
						|
)
 | 
						|
contrib_targets += isn
 | 
						|
 | 
						|
install_data(
 | 
						|
  'isn.control',
 | 
						|
  'isn--1.0--1.1.sql',
 | 
						|
  'isn--1.1--1.2.sql',
 | 
						|
  'isn--1.1.sql',
 | 
						|
  kwargs: contrib_data_args,
 | 
						|
)
 | 
						|
 | 
						|
install_headers(
 | 
						|
  'isn.h',
 | 
						|
  install_dir: dir_include_extension / 'isn',
 | 
						|
)
 | 
						|
 | 
						|
tests += {
 | 
						|
  'name': 'isn',
 | 
						|
  'sd': meson.current_source_dir(),
 | 
						|
  'bd': meson.current_build_dir(),
 | 
						|
  'regress': {
 | 
						|
    'sql': [
 | 
						|
      'isn',
 | 
						|
    ],
 | 
						|
  },
 | 
						|
}
 |