forked from unum-cloud/usearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconanfile.py
26 lines (19 loc) · 787 Bytes
/
conanfile.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from conans import ConanFile
required_conan_version = ">=1.53.0"
class USearchConan(ConanFile):
name = "usearch"
version = "2.16.9"
license = "Apache-2.0"
description = "Smaller & Faster Single-File Vector Search Engine from Unum"
homepage = "https://github.com/unum-cloud/usearch"
topics = ("search", "vector", "simd")
settings = "os", "arch", "compiler", "build_type"
url = "https://github.com/conan-io/conan-center-index"
package_type = "header-library"
# No settings/options are necessary, this is header only
# Potentially add unit-tests in the future:
# https://docs.conan.io/1/howtos/header_only.html#with-unit-tests
exports_sources = "include/*"
no_copy_source = True
def package(self):
self.copy("*.h")