kopia lustrzana https://github.com/pimoroni/pimoroni-pico
				
				
				
			
		
			
				
	
	
		
			16 wiersze
		
	
	
		
			315 B
		
	
	
	
		
			CMake
		
	
	
			
		
		
	
	
			16 wiersze
		
	
	
		
			315 B
		
	
	
	
		
			CMake
		
	
	
set(OUTPUT_NAME interstate75_example)
 | 
						|
add_executable(${OUTPUT_NAME} interstate75_example.cpp)
 | 
						|
 | 
						|
# enable usb output
 | 
						|
pico_enable_stdio_usb(${OUTPUT_NAME} 1)
 | 
						|
 | 
						|
pico_add_extra_outputs(${OUTPUT_NAME})
 | 
						|
 | 
						|
target_link_libraries(${OUTPUT_NAME}
 | 
						|
    pico_stdlib
 | 
						|
    pico_multicore
 | 
						|
    hardware_vreg
 | 
						|
    hub75
 | 
						|
    interstate75
 | 
						|
)
 |