-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 20190830 with support for new kits and big endian architectures
- Loading branch information
1 parent
90591bb
commit 7b39ad2
Showing
34 changed files
with
1,448 additions
and
243 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
cmake_minimum_required(VERSION 2.6.4) | ||
project (cryptoauthlib) | ||
|
||
# Set the current release version | ||
set(VERSION "2018.10.26") | ||
set(VERSION_MAJOR 2028) | ||
set(VERSION_MINOR 10) | ||
set(VERSION_PATCH 26) | ||
|
||
# Build Options | ||
option(BUILD_TESTS "Create Test Application with library" OFF) | ||
#set(ATCA_PKCS11 ON CACHE INTERNAL "") | ||
|
||
message(STATUS "Building Configuration: ${CMAKE_BUILD_TYPE}") | ||
|
||
|
||
if(BUILD_TESTS) | ||
set(ATCA_BUILD_SHARED_LIBS OFF CACHE INTERNAL "") | ||
endif(BUILD_TESTS) | ||
|
||
add_subdirectory(lib) | ||
|
||
# Tests | ||
if(BUILD_TESTS) | ||
add_subdirectory(test) | ||
endif(BUILD_TESTS) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.