You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-10-30 07:25:34 +03:00 
			
		
		
		
	* configcpp refactored * logging and datatypes refactored * more dataconvert * chore(build): massive removals, auto add files to debian install file * chore(codemanagement): nodeps headers, potentioal library * chore(build): configure before autobake * chore(build): use custom cmake commands for components, mariadb-plugin-columnstore.install generated * chore(build): install deps as separate step for build-packages * more deps * check debian/mariadb-plugin-columnstore.install automatically * chore(build): add option for multibracnh compilation * Fix warning
		
			
				
	
	
		
			34 lines
		
	
	
		
			734 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			734 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(S3API_DIR
 | |
|     ${CMAKE_CURRENT_SOURCE_DIR}/libmarias3
 | |
|     CACHE INTERNAL "S3API_DIR"
 | |
| )
 | |
| 
 | |
| set(S3_SOURCES
 | |
|     ${S3API_DIR}/src/debug.c
 | |
|     ${S3API_DIR}/src/error.c
 | |
|     ${S3API_DIR}/src/marias3.c
 | |
|     ${S3API_DIR}/src/request.c
 | |
|     ${S3API_DIR}/src/response.c
 | |
|     ${S3API_DIR}/src/sha256.c
 | |
|     ${S3API_DIR}/src/sha256-internal.c
 | |
|     ${S3API_DIR}/src/xml.c
 | |
|     ${S3API_DIR}/src/assume_role.c
 | |
| )
 | |
| 
 | |
| columnstore_shared_library(marias3 ${S3_SOURCES})
 | |
| columnstore_link(marias3 curl m)
 | |
| include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${S3API_DIR})
 | |
| 
 | |
| add_definitions(-D_GNU_SOURCE)
 | |
| 
 | |
| set(S3API_DEPS
 | |
|     marias3 curl
 | |
|     CACHE INTERNAL "S3API_DEPS"
 | |
| )
 | |
| 
 | |
| install(
 | |
|     TARGETS marias3
 | |
|     DESTINATION ${ENGINE_LIBDIR}
 | |
|     COMPONENT columnstore-engine
 | |
| )
 |