mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
cecc38f5b6
python.
18 lines
322 B
CMake
18 lines
322 B
CMake
|
|
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
|
|
|
|
include(../../dlib/add_python_module)
|
|
|
|
add_python_module(dlib
|
|
src/dlib.cpp
|
|
src/matrix.cpp
|
|
src/vector.cpp
|
|
src/svm_c_trainer.cpp
|
|
src/svm_rank_trainer.cpp
|
|
src/decision_functions.cpp
|
|
src/other.cpp
|
|
src/basic.cpp
|
|
src/cca.cpp
|
|
src/sequence_segmenter.cpp
|
|
)
|