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