Skip to content
Snippets Groups Projects
Commit 09240a9b authored by Joscha Schmiedt's avatar Joscha Schmiedt
Browse files

Rename conanfile.py

parent cab5f185
No related branches found
No related tags found
2 merge requests!61Release 0.3.0,!55Rename caosdb-cpplib to linkahead-cpplib
......@@ -5,14 +5,14 @@ from conan.tools.files import copy
from conan.errors import ConanInvalidConfiguration
class CaosdbConan(ConanFile):
name = "caosdb"
class LinkAheadConan(ConanFile):
name = "linkahead"
version = "0.3.0-dev"
license = "AGPL-3.0-or-later"
author = "Timm C. Fitschen <t.fitschen@indiscale.com>"
url = "https://gitlab.indiscale.com/caosdb/src/caosdb-cpplib.git"
description = "C++ library for the CaosDB project"
topics = ("data management", "caosdb")
description = "C++ library for the LinkAhead project"
topics = ("data management", "linkahead", "caosdb")
settings = "os", "compiler", "build_type", "arch"
options = {
"shared": [True, False],
......@@ -71,7 +71,7 @@ class CaosdbConan(ConanFile):
cmake = CMake(self)
cmake.configure()
cmake.build(target=["all"]) # , "ccaosdbcli", "cxxcaosdbcli"])
cmake.build(target=["all"]) # , "clinkaheadcli", "cxxlinkaheadcli"])
def package(self):
cmake = CMake(self)
......@@ -90,7 +90,7 @@ class CaosdbConan(ConanFile):
dst=os.path.join(self.package_folder, "lib"), keep_path=False)
def package_info(self):
self.cpp_info.libs = ["caosdb", "ccaosdb"]
self.cpp_info.libs = ["linkahead", "clinkahead"]
self.cpp_info.requires = ["boost::headers", "grpc::grpc", "protobuf::protobuf"]
def validate(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment