2023-08-30 10:04:40 +00:00
|
|
|
cmake_minimum_required(VERSION 3.26)
|
2023-05-27 04:34:31 +00:00
|
|
|
|
|
|
|
|
project(ctranslate2_bindings)
|
|
|
|
|
|
|
|
|
|
add_subdirectory(CTranslate2)
|
|
|
|
|
|
|
|
|
|
add_library(dummy
|
|
|
|
|
src/dummy.cc
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
target_link_libraries(dummy
|
|
|
|
|
PRIVATE ctranslate2
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
include(cmake/export_libs.cmake)
|
|
|
|
|
export_all_target_libs(dummy)
|