forked from Bananymous/banan-os
				
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			382 B
		
	
	
	
		
			CMake
		
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			382 B
		
	
	
	
		
			CMake
		
	
	
	
| cmake_minimum_required(VERSION 3.26)
 | |
| 
 | |
| project(test-globals CXX)
 | |
| 
 | |
| set(SOURCES
 | |
| 	main.cpp
 | |
| )
 | |
| 
 | |
| add_executable(test-globals ${SOURCES})
 | |
| target_compile_options(test-globals PUBLIC -O2 -g)
 | |
| target_link_libraries(test-globals PUBLIC libc)
 | |
| 
 | |
| add_custom_target(test-globals-install
 | |
| 	COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/test-globals ${BANAN_BIN}/
 | |
| 	DEPENDS test-globals
 | |
| )
 |