Updated descriptions
This commit is contained in:
parent
bfd0359354
commit
2f922aae4f
|
@ -55,3 +55,10 @@ conan test_package SystemCVerification/2.0.0.a@minres/<channel name> -o SystemC
|
||||||
```
|
```
|
||||||
|
|
||||||
where <c++ std variant> is one of 98, 11, or 14
|
where <c++ std variant> is one of 98, 11, or 14
|
||||||
|
|
||||||
|
## uploading
|
||||||
|
|
||||||
|
Uploading can be done using
|
||||||
|
```
|
||||||
|
conan upload <package name>/<package version>@<user name>/<channel> --all -r=<remote name>
|
||||||
|
```
|
||||||
|
|
|
@ -5,7 +5,7 @@ class SeasocksConan(ConanFile):
|
||||||
name = "SystemC"
|
name = "SystemC"
|
||||||
version = "2.3.2"
|
version = "2.3.2"
|
||||||
license = "Apache 2.0 License"
|
license = "Apache 2.0 License"
|
||||||
url = ""
|
url = "https://github.com/Minres/conan-recipes/blob/master/SystemC"
|
||||||
description = "SystemC is a set of C++ classes and macros which provide an event-driven simulation interface (see also discrete event simulation)."
|
description = "SystemC is a set of C++ classes and macros which provide an event-driven simulation interface (see also discrete event simulation)."
|
||||||
settings = "os", "compiler", "build_type", "arch"
|
settings = "os", "compiler", "build_type", "arch"
|
||||||
options = {"shared": [True, False], "stdcxx":[98,11,14]}
|
options = {"shared": [True, False], "stdcxx":[98,11,14]}
|
||||||
|
|
|
@ -5,9 +5,9 @@ class SystemcverificationConan(ConanFile):
|
||||||
name = "SystemCVerification"
|
name = "SystemCVerification"
|
||||||
version = "2.0.0a"
|
version = "2.0.0a"
|
||||||
folder = "scv-2.0.0a-20161019"
|
folder = "scv-2.0.0a-20161019"
|
||||||
license = "Apache License 2.0"
|
license = "Apache 2.0 License"
|
||||||
url = "<Package recipe repository url here, for issues about the package>"
|
url = "https://github.com/Minres/conan-recipes/blob/master/SystemCVerification"
|
||||||
description = "<Description of Systemcverification here>"
|
description = "The SystemC Verification (SCV) library provides a common set of APIs that are used as a basis to verification activities with SystemC"
|
||||||
settings = "os", "compiler", "build_type", "arch"
|
settings = "os", "compiler", "build_type", "arch"
|
||||||
options = {"stdcxx":[98,11,14]}
|
options = {"stdcxx":[98,11,14]}
|
||||||
default_options = "stdcxx=98"
|
default_options = "stdcxx=98"
|
||||||
|
|
Loading…
Reference in New Issue