# TinyAES++ -- AES encryption/decryption for C and C++
# Public domain; see http://unlicense.org/
# Stephane Charette <stephanecharette@gmail.com>
# $Id: CMakeLists.txt 2415 2017-12-04 14:55:44Z stephane $

PROJECT ( TinyAESPP C CXX )

CMAKE_MINIMUM_REQUIRED ( VERSION 2.8 )
IF ( NOT CMAKE_BUILD_TYPE )
	SET ( CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel." FORCE )
ENDIF ()


INCLUDE ( CM_version.cmake		)	# get the version number
INCLUDE ( CM_definitions.cmake	)	# compiler definitions
INCLUDE ( CM_source.cmake		)	# source code that needs to be built
INCLUDE ( CM_package.cmake		)	# create .exe or .deb packages
