mirror of
				https://gitee.com/jiuyilian/embedded-framework.git
				synced 2025-10-24 18:20:15 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
cmake_minimum_required(VERSION 3.12.4)
 | 
						|
 | 
						|
project(lv_drivers HOMEPAGE_URL https://github.com/lvgl/lv_drivers/)
 | 
						|
 | 
						|
# Option to build as shared library (as opposed to static), default: OFF
 | 
						|
option(BUILD_SHARED_LIBS "Build shared as library (as opposed to static)" OFF)
 | 
						|
 | 
						|
file(GLOB_RECURSE SOURCES ./*.c)
 | 
						|
 | 
						|
if (BUILD_SHARED_LIBS)
 | 
						|
  add_library(lv_drivers SHARED ${SOURCES})
 | 
						|
else()
 | 
						|
  add_library(lv_drivers STATIC ${SOURCES})
 | 
						|
endif()
 | 
						|
 | 
						|
add_library(lvgl_drivers ALIAS lv_drivers)
 | 
						|
add_library(lvgl::drivers ALIAS lv_drivers)
 | 
						|
 | 
						|
target_include_directories(lv_drivers SYSTEM PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
 | 
						|
 | 
						|
find_package(PkgConfig)
 | 
						|
pkg_check_modules(PKG_WAYLAND wayland-client wayland-cursor wayland-protocols xkbcommon)
 | 
						|
target_link_libraries(lv_drivers PUBLIC lvgl ${PKG_WAYLAND_LIBRARIES})
 | 
						|
 | 
						|
if("${LIB_INSTALL_DIR}" STREQUAL "")
 | 
						|
  set(LIB_INSTALL_DIR "lib")
 | 
						|
endif()
 | 
						|
 | 
						|
if("${INC_INSTALL_DIR}" STREQUAL "")
 | 
						|
  set(INC_INSTALL_DIR "include/lvgl/lv_drivers")
 | 
						|
endif()
 | 
						|
 | 
						|
install(
 | 
						|
  DIRECTORY "${CMAKE_SOURCE_DIR}/"
 | 
						|
  DESTINATION "${CMAKE_INSTALL_PREFIX}/${INC_INSTALL_DIR}/"
 | 
						|
  FILES_MATCHING
 | 
						|
  PATTERN "*.h"
 | 
						|
  PATTERN ".git*" EXCLUDE
 | 
						|
  PATTERN "CMakeFiles" EXCLUDE
 | 
						|
  PATTERN "docs" EXCLUDE
 | 
						|
  PATTERN "lib" EXCLUDE)
 | 
						|
 | 
						|
file(GLOB LV_DRIVERS_PUBLIC_HEADERS "${CMAKE_SOURCE_DIR}/lv_drv_conf.h")
 | 
						|
 | 
						|
set_target_properties(
 | 
						|
  lv_drivers
 | 
						|
  PROPERTIES OUTPUT_NAME lv_drivers
 | 
						|
             ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
 | 
						|
             LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
 | 
						|
             RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
 | 
						|
             PUBLIC_HEADER "${LV_DRIVERS_PUBLIC_HEADERS}")
 | 
						|
 | 
						|
install(
 | 
						|
  TARGETS lv_drivers
 | 
						|
  ARCHIVE DESTINATION "${LIB_INSTALL_DIR}"
 | 
						|
  LIBRARY DESTINATION "${LIB_INSTALL_DIR}"
 | 
						|
  RUNTIME DESTINATION "${LIB_INSTALL_DIR}"
 | 
						|
  PUBLIC_HEADER DESTINATION "${INC_INSTALL_DIR}")
 |