You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-11-03 17:13:17 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			582 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			582 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
 | 
						|
include_directories( ${ENGINE_COMMON_INCLUDES} )
 | 
						|
 | 
						|
 | 
						|
########### next target ###############
 | 
						|
 | 
						|
set(querytele_LIB_SRCS
 | 
						|
    querytele.cpp
 | 
						|
    queryteleclient.cpp
 | 
						|
    querytele_constants.cpp
 | 
						|
    querytele_types.cpp
 | 
						|
    QueryTeleService.cpp
 | 
						|
    queryteleprotoimpl.cpp)
 | 
						|
 | 
						|
add_library(querytele SHARED ${querytele_LIB_SRCS})
 | 
						|
add_dependencies(querytele external_boost external_thrift)
 | 
						|
 | 
						|
target_include_directories(querytele PRIVATE ${THRIFT_INCLUDE_DIRS})
 | 
						|
target_link_libraries(querytele ${THRIFT_LIBRARY})
 | 
						|
install(TARGETS querytele DESTINATION ${ENGINE_LIBDIR} COMPONENT columnstore-engine)
 | 
						|
 |