Files
mlpack/fastlib/u/houyang/svm/build.py
T

24 lines
298 B
Python

librule(
name = "svm",
sources = ["svm_main.cc"],
headers = ["smo.h", "svm.h"],
deplibs = ["fastlib:fastlib"],
)
binrule(
# The name of the executable.
name = "svm_main",
sources = ["svm_main.cc"],
headers = ["smo.h", "svm.h"],
deplibs = [":svm"]
)