13 lines
		
	
	
		
			290 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			290 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| add_executable(hello_gpio_irq
 | |
|         hello_gpio_irq.c
 | |
|         )
 | |
| 
 | |
| # pull in common dependencies
 | |
| target_link_libraries(hello_gpio_irq pico_stdlib)
 | |
| 
 | |
| # create map/bin/hex file etc.
 | |
| pico_add_extra_outputs(hello_gpio_irq)
 | |
| 
 | |
| # add url via pico_set_program_url
 | |
| example_auto_set_url(hello_gpio_irq)
 |