mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 18:42:43 +00:00 
			
		
		
		
	 6e65b36973
			
		
	
	
		6e65b36973
		
	
	
	
	
		
			
			This is a simple wrapper around posix_spawn() that will help us simplify a bunch of very verbose posix_spawn() invocations. This first version only supports the simplest case: executing an executable without passing arguments or doing anything fancy. More features can be added to cover more cases. :^)
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			678 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			678 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(SOURCES
 | |
|     Account.cpp
 | |
|     AnonymousBuffer.cpp
 | |
|     ArgsParser.cpp
 | |
|     ConfigFile.cpp
 | |
|     Command.cpp
 | |
|     DateTime.cpp
 | |
|     DirIterator.cpp
 | |
|     ElapsedTimer.cpp
 | |
|     Event.cpp
 | |
|     EventLoop.cpp
 | |
|     FileWatcher.cpp
 | |
|     File.cpp
 | |
|     GetPassword.cpp
 | |
|     IODevice.cpp
 | |
|     LocalServer.cpp
 | |
|     LocalSocket.cpp
 | |
|     LockFile.cpp
 | |
|     MimeData.cpp
 | |
|     NetworkJob.cpp
 | |
|     NetworkResponse.cpp
 | |
|     Notifier.cpp
 | |
|     Object.cpp
 | |
|     Process.cpp
 | |
|     ProcessStatisticsReader.cpp
 | |
|     Property.cpp
 | |
|     Socket.cpp
 | |
|     StandardPaths.cpp
 | |
|     TCPServer.cpp
 | |
|     TCPSocket.cpp
 | |
|     Timer.cpp
 | |
|     UDPServer.cpp
 | |
|     UDPSocket.cpp
 | |
| )
 | |
| 
 | |
| serenity_lib(LibCore core)
 | |
| target_link_libraries(LibCore LibC LibCrypt)
 |