mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 14:52:43 +00:00 
			
		
		
		
	 bb07d678ac
			
		
	
	
		bb07d678ac
		
	
	
	
	
		
			
			This is a totally different syntax than for regular CMake files, and also is undocumented and subject to change, but it's also nice and simple. :^)
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			240 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			240 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2023, Sam Atkins <atkinssj@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/Types.h>
 | |
| 
 | |
| namespace CMake {
 | |
| 
 | |
| struct Position {
 | |
|     size_t line { 0 };
 | |
|     size_t column { 0 };
 | |
| };
 | |
| 
 | |
| }
 |