#------------------------------------------------------------------------------
#   Define the project
#------------------------------------------------------------------------------

# This file is no longer used!

# From: https://cmake.org/cmake/help/v3.2/command/project.html
#
# The top-level CMakeLists.txt file for a project must contain a literal,
# direct call to the project() command; loading one through the include()
# command is not sufficient. If no such call exists, CMake will issue a
# warning and pretend there is a project(Project) at the top to enable the
# default languages (C and CXX).
#
# Note Call the project() command near the top of the top-level CMakeLists.txt,
# but after calling cmake_minimum_required(). It is important to establish
# version and policy settings before invoking other commands whose behavior
# they may affect. See also policy CMP0000.

# set( EXTPKG_NAME  "crypto"                                                  )
# set( EXTPKG_VERS  "1.0.0"                                                   )
# set( EXTPKG_DESC  "Simple AES/DES encryption and SHA1/SHA2 hashing library" )
# 
# project( ${EXTPKG_NAME} VERSION ${EXTPKG_VERS} )
# set( PROJECT_DESCRIPTION "${EXTPKG_DESC}" CACHE PATH "Project description" FORCE )

#------------------------------------------------------------------------------
