 718e255f0a
			
		
	
	
		718e255f0a
		
	
	
	
	
		
			
			This allows CStr constants to be defined easily on Rust 1.63.0, while checking that there are no embedded NULs. c"" literals were only stabilized in Rust 1.77.0. Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Meson
		
	
	
	
	
	
| _qemu_api_rs = static_library(
 | |
|   'qemu_api',
 | |
|   structured_sources(
 | |
|     [
 | |
|       'src/lib.rs',
 | |
|       'src/c_str.rs',
 | |
|       'src/definitions.rs',
 | |
|       'src/device_class.rs',
 | |
|       'src/vmstate.rs',
 | |
|       'src/zeroable.rs',
 | |
|     ],
 | |
|     {'.' : bindings_rs},
 | |
|   ),
 | |
|   override_options: ['rust_std=2021', 'build.rust_std=2021'],
 | |
|   rust_abi: 'rust',
 | |
|   rust_args: [
 | |
|     '--cfg', 'MESON',
 | |
|     # '--cfg', 'feature="allocator"',
 | |
|   ],
 | |
| )
 | |
| 
 | |
| rust.test('rust-qemu-api-tests', _qemu_api_rs,
 | |
|           suite: ['unit', 'rust'])
 | |
| 
 | |
| qemu_api = declare_dependency(
 | |
|   link_with: _qemu_api_rs,
 | |
|   dependencies: qemu_api_macros,
 | |
| )
 | |
| 
 | |
| # Rust executables do not support objects, so add an intermediate step.
 | |
| rust_qemu_api_objs = static_library(
 | |
|     'rust_qemu_api_objs',
 | |
|     objects: [libqom.extract_all_objects(recursive: false),
 | |
|               libhwcore.extract_all_objects(recursive: false)])
 | |
| 
 | |
| test('rust-qemu-api-integration',
 | |
|     executable(
 | |
|         'rust-qemu-api-integration',
 | |
|         'tests/tests.rs',
 | |
|         override_options: ['rust_std=2021', 'build.rust_std=2021'],
 | |
|         rust_args: ['--test'],
 | |
|         install: false,
 | |
|         dependencies: [qemu_api, qemu_api_macros],
 | |
|         link_whole: [rust_qemu_api_objs, libqemuutil]),
 | |
|     args: [
 | |
|         '--test',
 | |
|         '--format', 'pretty',
 | |
|     ],
 | |
|     protocol: 'rust',
 | |
|     suite: ['unit', 'rust'])
 |