mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 01:32:45 +00:00 
			
		
		
		
	 3a71748e5d
			
		
	
	
		3a71748e5d
		
	
	
	
	
		
			
			This was done with CLion's automatic rename feature and with:
find . -name ClientConnection.h
    | rename 's/ClientConnection\.h/ConnectionFromClient.h/'
find . -name ClientConnection.cpp
    | rename 's/ClientConnection\.cpp/ConnectionFromClient.cpp/'
		
	
			
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			404 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			404 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| serenity_component(
 | |
|     ImageDecoder
 | |
|     TARGETS ImageDecoder
 | |
| )
 | |
| 
 | |
| compile_ipc(ImageDecoderServer.ipc ImageDecoderServerEndpoint.h)
 | |
| compile_ipc(ImageDecoderClient.ipc ImageDecoderClientEndpoint.h)
 | |
| 
 | |
| set(SOURCES
 | |
|     ConnectionFromClient.cpp
 | |
|     main.cpp
 | |
|     ImageDecoderServerEndpoint.h
 | |
|     ImageDecoderClientEndpoint.h
 | |
| )
 | |
| 
 | |
| serenity_bin(ImageDecoder)
 | |
| target_link_libraries(ImageDecoder LibGfx LibIPC LibMain)
 |