2012-12-22 11:23:58 +04:00
|
|
|
# WinPR: Windows Portable Runtime
|
|
|
|
# libwinpr-crypto cmake build script
|
|
|
|
#
|
|
|
|
# Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2014-07-10 02:03:20 +04:00
|
|
|
winpr_module_add(
|
2015-10-08 20:58:55 +03:00
|
|
|
hash.c
|
2015-10-08 23:26:37 +03:00
|
|
|
rand.c
|
|
|
|
cipher.c
|
2015-10-08 20:58:55 +03:00
|
|
|
cert.c
|
2014-04-29 11:42:18 +04:00
|
|
|
crypto.c
|
2015-10-08 20:58:55 +03:00
|
|
|
crypto.h)
|
2012-12-22 11:23:58 +04:00
|
|
|
|
2014-07-17 20:02:47 +04:00
|
|
|
if(WIN32)
|
|
|
|
winpr_library_add(crypt32)
|
|
|
|
endif()
|
|
|
|
|
2013-01-04 21:16:55 +04:00
|
|
|
if(BUILD_TESTING)
|
|
|
|
add_subdirectory(test)
|
|
|
|
endif()
|