Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mbedtls
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
External Wiki
External Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BC
public
external
mbedtls
Commits
e1d34d17
Commit
e1d34d17
authored
Jun 25, 2015
by
Manuel Pégourié-Gonnard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmake: add shortcut 'lib' for all libraries
Name chosen to match the existing make target.
parent
574ae180
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
CMakeLists.txt
library/CMakeLists.txt
+6
-1
No files found.
library/CMakeLists.txt
View file @
e1d34d17
...
...
@@ -134,7 +134,7 @@ if(USE_STATIC_MBEDTLS_LIBRARY)
install
(
TARGETS
${
mbedtls_static_target
}
${
mbedx509_static_target
}
${
mbedcrypt_static_target
}
DESTINATION
${
LIB_INSTALL_DIR
}
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
)
endif
()
endif
(
USE_STATIC_MBEDTLS_LIBRARY
)
if
(
USE_SHARED_MBEDTLS_LIBRARY
)
add_library
(
mbedcrypto SHARED
${
src_crypto
}
)
...
...
@@ -153,3 +153,8 @@ if(USE_SHARED_MBEDTLS_LIBRARY)
DESTINATION
${
LIB_INSTALL_DIR
}
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
)
endif
(
USE_SHARED_MBEDTLS_LIBRARY
)
add_custom_target
(
lib DEPENDS mbedcrypto mbedx509 mbedtls
)
if
(
USE_STATIC_MBEDTLS_LIBRARY AND USE_SHARED_MBEDTLS_LIBRARY
)
add_dependencies
(
lib mbedcrypto_static mbedx509_static mbedtls_static
)
endif
()
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