2012-06-19 06:22:39 +04:00
|
|
|
# WinPR: Windows Portable Runtime
|
|
|
|
# libwinpr-sysinfo cmake build script
|
|
|
|
#
|
2012-09-21 04:45:56 +04:00
|
|
|
# Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2012-06-19 06:22:39 +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.
|
|
|
|
|
2017-01-24 11:56:45 +03:00
|
|
|
if(ANDROID)
|
|
|
|
add_subdirectory(cpufeatures)
|
|
|
|
endif()
|
|
|
|
|
2014-07-10 02:03:20 +04:00
|
|
|
winpr_module_add(sysinfo.c)
|
2012-06-19 06:22:39 +04:00
|
|
|
|
2015-04-21 21:42:06 +03:00
|
|
|
if((NOT WIN32) AND (NOT APPLE) AND (NOT ANDROID) AND (NOT OPENBSD))
|
2014-07-10 02:03:20 +04:00
|
|
|
winpr_library_add(rt)
|
2013-02-20 06:21:20 +04:00
|
|
|
endif()
|
2012-06-19 06:22:39 +04:00
|
|
|
|
2013-01-24 02:46:32 +04:00
|
|
|
if(BUILD_TESTING)
|
|
|
|
add_subdirectory(test)
|
|
|
|
endif()
|
2014-04-29 11:42:18 +04:00
|
|
|
|