mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:02:43 +00:00 
			
		
		
		
	 efe4da57df
			
		
	
	
		efe4da57df
		
	
	
	
	
		
			
			The dynamic loader is now stable enough to be used everywhere in the system - so this commit does just that. No More .a Files, Long Live .so's!
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			278 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			278 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(SOURCES
 | |
|     main.cpp
 | |
|     ../../Libraries/LibC/crt0_shared.cpp
 | |
| )
 | |
| 
 | |
| set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -nostartfiles -lgcc_s -pie -fpic ")
 | |
| 
 | |
| serenity_bin(DynamicObjectDemo)
 | |
| target_link_libraries(DynamicObjectDemo SampleLib LibC LibCore LibGUI)
 | |
| 
 | |
| add_subdirectory(SampleLib)
 |