mirror of
				https://github.com/sloven-c/calculator.git
				synced 2025-11-04 14:17:23 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			208 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			208 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
cmake_minimum_required(VERSION 4.0)
 | 
						|
project(calculator C)
 | 
						|
 | 
						|
set(CMAKE_C_STANDARD 23)
 | 
						|
 | 
						|
add_executable(calculator main.c
 | 
						|
        structures.h
 | 
						|
        stack.c
 | 
						|
        stack.h
 | 
						|
)
 | 
						|
target_link_libraries(calculator m) |