|
@@ -1,4 +1,4 @@
|
|
|
-from conans import ConanFile, CMake, tools
|
|
|
+from conans import ConanFile, CMake
|
|
|
|
|
|
|
|
|
class LsStdConan(ConanFile):
|
|
@@ -6,7 +6,8 @@ class LsStdConan(ConanFile):
|
|
|
version = "2021.2.0"
|
|
|
license = "MIT"
|
|
|
url = "<Package recipe repository url here, for issues about the package>"
|
|
|
- description = "This library provides standard functionalities like serialization, json, xml, file operations, boxing, state machine, event handling."
|
|
|
+ description = "This library provides standard functionalities like serialization, json, xml, file operations, " \
|
|
|
+ "boxing, state machine, event handling."
|
|
|
topics = ("serialization", "events", "boxing", "xml", "json", "files", "state machine")
|
|
|
settings = "os", "compiler", "build_type", "arch"
|
|
|
options = {"shared": [True, False]}
|
|
@@ -14,7 +15,8 @@ class LsStdConan(ConanFile):
|
|
|
generators = "cmake"
|
|
|
|
|
|
def source(self):
|
|
|
- self.run("git clone https://vcs.lynarstudios.de/public/ls-standard-library.git --branch v" + self.version + " --single-branch")
|
|
|
+ self.run("git clone https://vcs.lynarstudios.de/public/ls-standard-library.git --branch v" + self.version +
|
|
|
+ " --single-branch")
|
|
|
|
|
|
def build(self):
|
|
|
cmake = CMake(self)
|