mirror of
				https://github.com/RetroDECK/ES-DE.git
				synced 2025-04-10 19:15:13 +00:00 
			
		
		
		
	 98120f9ecd
			
		
	
	
		98120f9ecd
		
	
	
	
	
		
			
			Removed relative paths in #includes. Changed ViewController to a singleton, removing it from the Window class.
		
			
				
	
	
		
			14 lines
		
	
	
		
			304 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			304 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| project("nanosvg")
 | |
| 
 | |
| set(NSVG_HEADERS
 | |
| 	${CMAKE_CURRENT_SOURCE_DIR}/nanosvg.h
 | |
|     ${CMAKE_CURRENT_SOURCE_DIR}/nanosvgrast.h
 | |
| )
 | |
| 
 | |
| set(NSVG_SOURCES
 | |
| 	${CMAKE_CURRENT_SOURCE_DIR}/src/nanosvg_impl.cpp
 | |
| )
 | |
| 
 | |
| include_directories(${CMAKE_CURRENT_SOURCE_DIR})
 | |
| add_library(nanosvg STATIC ${NSVG_SOURCES} ${NSVG_HEADERS})
 |