2020-09-07 20:41:13 +00:00
|
|
|
# Copyright (c) 2020 ARM Limited. All rights reserved.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2020-10-22 16:00:21 +00:00
|
|
|
add_library(mbed-randlib INTERFACE)
|
2020-10-12 11:35:19 +00:00
|
|
|
|
2020-10-22 16:00:21 +00:00
|
|
|
target_include_directories(mbed-randlib
|
2020-10-12 11:35:19 +00:00
|
|
|
INTERFACE
|
2020-09-07 20:41:13 +00:00
|
|
|
include
|
|
|
|
include/mbed-client-randlib
|
|
|
|
include/mbed-client-randlib/platform
|
|
|
|
)
|
|
|
|
|
2020-10-22 16:00:21 +00:00
|
|
|
target_sources(mbed-randlib
|
2020-10-12 11:35:19 +00:00
|
|
|
INTERFACE
|
2020-09-07 20:41:13 +00:00
|
|
|
source/randLIB.c
|
|
|
|
)
|
2020-10-12 11:35:19 +00:00
|
|
|
|
2020-10-22 16:00:21 +00:00
|
|
|
target_link_libraries(mbed-randlib
|
2020-10-12 11:35:19 +00:00
|
|
|
INTERFACE
|
2020-10-22 16:00:21 +00:00
|
|
|
mbed-nanostack
|
2020-10-12 11:35:19 +00:00
|
|
|
)
|