mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-15 15:16:12 -04:00
this is a merge commit based on a work done here: https://team-review.git.corp.google.com/c/nearby-eng/nearby/+/761959 the difference with the former is: this one is tracking both heads of a merge Change-Id: I8b28b1d3a5280581f20e4edf9144641a12df8879
20 lines
352 B
CMake
20 lines
352 B
CMake
add_library(platform_impl_sample STATIC)
|
|
|
|
target_sources(platform_impl_sample
|
|
PRIVATE
|
|
sample_wifi_medium.cc
|
|
PUBLIC
|
|
sample_platform.h
|
|
sample_wifi_medium.h
|
|
)
|
|
|
|
target_link_libraries(platform_impl_sample
|
|
PUBLIC
|
|
absl::time
|
|
platform_api
|
|
platform_impl_shared_file
|
|
platform_port_string
|
|
platform_types
|
|
platform_utils
|
|
)
|