 3678a25baa
			
		
	
	3678a25baa
	
	
	
		
			
			* include_guard requires GLOBAL as family.cmake is included in multiple non child places
* the following recently added check is suprfluous (family_configure_host_example for rp2040 should do this already),
  and breaks if pico_pio_usb is not avaialble, so i have removed
   # Add pico-pio-usb for rp2040 since user can choose to run on bit-banging host
   if(FAMILY STREQUAL "rp2040")
      family_add_pico_pio_usb(${PROJECT})
   endif()
* added new familt_example_missing_dependency functino to print missing dependency warning, so
  pico-examples can override it to be less in your face, and also more contextual to pico-examples
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			872 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			872 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| cmake_minimum_required(VERSION 3.17)
 | |
| 
 | |
| include(${CMAKE_CURRENT_SOURCE_DIR}/../../../hw/bsp/family_support.cmake)
 | |
| 
 | |
| # gets PROJECT name for the example (e.g. <BOARD>-<DIR_NAME>)
 | |
| family_get_project_name(PROJECT ${CMAKE_CURRENT_LIST_DIR})
 | |
| 
 | |
| project(${PROJECT} C CXX ASM)
 | |
| 
 | |
| # Checks this example is valid for the family and initializes the project
 | |
| family_initialize_project(${PROJECT} ${CMAKE_CURRENT_LIST_DIR})
 | |
| 
 | |
| add_executable(${PROJECT})
 | |
| 
 | |
| # Example source
 | |
| target_sources(${PROJECT} PUBLIC
 | |
|   ${CMAKE_CURRENT_SOURCE_DIR}/src/hid_app.c
 | |
|   ${CMAKE_CURRENT_SOURCE_DIR}/src/main.c
 | |
|   )
 | |
| 
 | |
| # Example include
 | |
| target_include_directories(${PROJECT} PUBLIC
 | |
|   ${CMAKE_CURRENT_SOURCE_DIR}/src
 | |
|   )
 | |
| 
 | |
| # Configure compilation flags and libraries for the example without RTOS.
 | |
| # See the corresponding function in hw/bsp/FAMILY/family.cmake for details.
 | |
| family_configure_host_example(${PROJECT} noos)
 |