mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 22:56:12 -04:00
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
|
|
)
|