16 lines
399 B
CMake
16 lines
399 B
CMake
file(GLOB srcs ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp)
|
|
|
|
# Build each source file independently
|
|
include_directories(../../../) # faiss root directory
|
|
|
|
foreach(source ${srcs})
|
|
get_filename_component(name ${source} NAME_WE)
|
|
|
|
# target
|
|
add_executable(${name} ${source})
|
|
target_link_libraries(${name} ${faiss_lib})
|
|
|
|
# Install
|
|
install(TARGETS ${name} DESTINATION bin)
|
|
endforeach(source)
|