mirror of
				https://gitlab.gnome.org/GNOME/glib.git
				synced 2025-11-04 01:58:54 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			521 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			521 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
libtestmodulea = shared_module('testmodulea', 'test-module-a.c',
 | 
						|
  dependencies : [libglib_dep, libgobject_dep, libgmodule_dep, libgio_dep],
 | 
						|
  c_args : [ ],
 | 
						|
  install : installed_tests_enabled,
 | 
						|
  install_dir : join_paths(installed_tests_execdir, 'modules'),
 | 
						|
)
 | 
						|
 | 
						|
libtestmoduleb = shared_module('testmoduleb', 'test-module-b.c',
 | 
						|
  dependencies : [libglib_dep, libgobject_dep, libgmodule_dep, libgio_dep],
 | 
						|
  c_args : [ ],
 | 
						|
  install : installed_tests_enabled,
 | 
						|
  install_dir : join_paths(installed_tests_execdir, 'modules'),
 | 
						|
)
 |