mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 10:23:54 +00:00
47 lines
1.5 KiB
CMake
47 lines
1.5 KiB
CMake
|
# Copyright (c) 2018-present, Trail of Bits, Inc.
|
||
|
#
|
||
|
# 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.
|
||
|
|
||
|
cmake_minimum_required(VERSION 3.13.1)
|
||
|
|
||
|
function(utillinuxMain)
|
||
|
if(NOT DEFINED PLATFORM_LINUX)
|
||
|
return()
|
||
|
endif()
|
||
|
|
||
|
set(name "util-linux")
|
||
|
set(version "2.27.1")
|
||
|
set(hash "2c2e64f8364afeddc4804716ae835c674d48592c163e59903356de9c3b31da5d")
|
||
|
set(anchor_file "lib/libmount.a")
|
||
|
|
||
|
set(additional_libraries
|
||
|
lib/libblkid.a
|
||
|
lib/libfdisk.a
|
||
|
lib/libsmartcols.a
|
||
|
lib/libuuid.a
|
||
|
)
|
||
|
|
||
|
importThirdPartyBinaryLibrary("${name}" "${version}" "${hash}" "imported" "${anchor_file}" ${additional_libraries})
|
||
|
|
||
|
foreach(additional_lib ${additional_libraries})
|
||
|
list(APPEND additional_link_libs "${importThirdPartyBinaryLibrary_baseFolderPath}/${additional_lib}")
|
||
|
endforeach()
|
||
|
|
||
|
set_target_properties(thirdparty_util-linux PROPERTIES
|
||
|
IMPORTED_LOCATION "${importThirdPartyBinaryLibrary_baseFolderPath}/${anchor_file}"
|
||
|
INTERFACE_LINK_LIBRARIES "${additional_link_libs}"
|
||
|
)
|
||
|
endfunction()
|
||
|
|
||
|
utillinuxMain()
|