mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	When no type is given, it depends on BUILD_SHARED_LIBS value which is not desired in this case.
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			478 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			478 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
include_directories(
 | 
						|
	${PROTOCOLS_INCLUDE_DIRS}
 | 
						|
	${PANGO_INCLUDE_DIRS}
 | 
						|
	${XKBCOMMON_INCLUDE_DIRS}
 | 
						|
	${WAYLAND_INCLUDE_DIR}
 | 
						|
)
 | 
						|
 | 
						|
add_library(sway-wayland STATIC
 | 
						|
	buffers.c
 | 
						|
	pango.c
 | 
						|
	registry.c
 | 
						|
	window.c
 | 
						|
	cairo.c
 | 
						|
	)
 | 
						|
 | 
						|
target_link_libraries(sway-wayland
 | 
						|
	sway-common
 | 
						|
	sway-protocols
 | 
						|
	${PANGO_LIBRARIES}
 | 
						|
	${XKBCOMMON_LIBRARIES}
 | 
						|
	)
 | 
						|
 | 
						|
if (WITH_GDK_PIXBUF)
 | 
						|
  include_directories(
 | 
						|
	  ${GDK_PIXBUF_INCLUDE_DIRS}
 | 
						|
  )
 | 
						|
  target_link_libraries(sway-wayland
 | 
						|
	  ${GDK_PIXBUF_LIBRARIES}
 | 
						|
  )
 | 
						|
endif()
 |