kopia lustrzana https://github.com/Wren6991/PicoDVI
				
				
				
			
		
			
				
	
	
		
			21 wiersze
		
	
	
		
			329 B
		
	
	
	
		
			CMake
		
	
	
			
		
		
	
	
			21 wiersze
		
	
	
		
			329 B
		
	
	
	
		
			CMake
		
	
	
add_executable(tiles
 | 
						|
	main.c
 | 
						|
)
 | 
						|
 | 
						|
target_compile_options(tiles PRIVATE -Wall)
 | 
						|
 | 
						|
target_compile_definitions(tiles PRIVATE
 | 
						|
	DVI_DEFAULT_SERIAL_CONFIG=${DVI_DEFAULT_SERIAL_CONFIG}
 | 
						|
	)
 | 
						|
 | 
						|
target_link_libraries(tiles
 | 
						|
	pico_stdlib
 | 
						|
	pico_multicore
 | 
						|
	pico_util
 | 
						|
	libdvi
 | 
						|
	libsprite
 | 
						|
)
 | 
						|
 | 
						|
# create map/bin/hex file etc.
 | 
						|
pico_add_extra_outputs(tiles)
 |