mirror of
				https://github.com/KartKrewDev/RingRacers.git
				synced 2025-10-30 08:01:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			365 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			365 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # https://github.com/tcbrindle/span/
 | |
| # Portable implementation of C++20 std::span
 | |
| # Boost License 1.0
 | |
| 
 | |
| cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
 | |
| 
 | |
| add_library(tcbrindle_span INTERFACE)
 | |
| target_sources(tcbrindle_span INTERFACE include/tcb/span.hpp)
 | |
| target_include_directories(tcbrindle_span INTERFACE include)
 | |
| 
 | |
| add_library(tcbrindle::span ALIAS tcbrindle_span)
 | 
