Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
Tiny AES C
Commits
ba0f2fd1
Commit
ba0f2fd1
authored
Jan 31, 2019
by
Torfinn Berset
Browse files
Remove Package author, and add Unlicense
parent
139cebe4
Changes
1
Hide whitespace changes
Inline
Side-by-side
conanfile.py
View file @
ba0f2fd1
...
...
@@ -4,8 +4,7 @@ from conans import ConanFile, CMake
class
TinyAesCConan
(
ConanFile
):
name
=
"tiny-AES-c"
version
=
"1.0.0"
license
=
"MIT"
author
=
"Torfinn Berset <torfinn@bloomlife.com>"
license
=
"The Unlicense"
url
=
"https://github.com/kokke/tiny-AES-c"
description
=
"Small portable AES128/192/256 in C"
topics
=
(
"encryption"
,
"crypto"
,
"AES"
)
...
...
@@ -13,6 +12,7 @@ class TinyAesCConan(ConanFile):
generators
=
"cmake"
exports_sources
=
[
"CMakeLists.txt"
,
"*.c"
,
'*.h'
,
'*.hpp'
]
exports
=
[
"unlicense.txt"
]
_options_dict
=
{
# enable AES128
...
...
@@ -59,6 +59,7 @@ class TinyAesCConan(ConanFile):
self
.
copy
(
"*.h"
,
dst
=
"include"
)
self
.
copy
(
"*.hpp"
,
dst
=
"include"
)
self
.
copy
(
"*.a"
,
dst
=
"lib"
,
keep_path
=
False
)
self
.
copy
(
"unlicense.txt"
)
def
package_info
(
self
):
self
.
cpp_info
.
libs
=
[
"tiny-aes"
]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment