38 lines
		
	
	
		
			607 B
		
	
	
	
		
			Meson
		
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			607 B
		
	
	
	
		
			Meson
		
	
	
	
srcs = [
 | 
						|
    'Args.c',
 | 
						|
    'Color.c',
 | 
						|
    'Cursor.c',
 | 
						|
    'Display.c',
 | 
						|
    'Events.c',
 | 
						|
    'Font.c',
 | 
						|
    'GC.c',
 | 
						|
    'GCOps.c',
 | 
						|
    'Handlers.c',
 | 
						|
    'Init.c',
 | 
						|
    'Keyboard.c',
 | 
						|
    'Pixmap.c',
 | 
						|
    'Pointer.c',
 | 
						|
    'Screen.c',
 | 
						|
    'Visual.c',
 | 
						|
    'Window.c',
 | 
						|
    '../../mi/miinitext.c',
 | 
						|
]
 | 
						|
 | 
						|
executable(
 | 
						|
    'Xnest',
 | 
						|
    srcs,
 | 
						|
    include_directories: inc,
 | 
						|
    dependencies: [
 | 
						|
        common_dep,
 | 
						|
        xnest_dep,
 | 
						|
    ],
 | 
						|
    link_with: [
 | 
						|
        libxserver_main,
 | 
						|
        libxserver,
 | 
						|
        libxserver_xi_stubs,
 | 
						|
        libxserver_xkb_stubs,
 | 
						|
    ],
 | 
						|
    c_args: '-DHAVE_XNEST_CONFIG_H',
 | 
						|
    install: true,
 | 
						|
)
 |