2012-05-05 22:09:08 -04:00
|
|
|
# WinPR: Windows Portable Runtime
|
|
|
|
# libwinpr-crt cmake build script
|
|
|
|
#
|
2012-09-19 21:42:46 -04:00
|
|
|
# Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2012-05-05 22:09:08 -04:00
|
|
|
#
|
|
|
|
# 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 00:03:20 +02:00
|
|
|
winpr_module_add(
|
2012-09-19 21:42:46 -04:00
|
|
|
alignment.c
|
2012-10-27 20:25:11 -04:00
|
|
|
conversion.c
|
2012-10-05 14:45:54 -04:00
|
|
|
buffer.c
|
2012-05-05 22:09:08 -04:00
|
|
|
memory.c
|
2012-12-16 16:21:48 -05:00
|
|
|
string.c
|
|
|
|
unicode.c
|
|
|
|
utf.c
|
|
|
|
utf.h)
|
2012-05-05 22:09:08 -04:00
|
|
|
|
2012-10-13 09:50:02 -04:00
|
|
|
if(BUILD_TESTING)
|
2012-10-01 19:10:00 -04:00
|
|
|
add_subdirectory(test)
|
|
|
|
endif()
|