-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for CMake in pw_async module and pw_async_basic Change-Id: I4cf5957c1f487efaa67a3896809dedad3ad32c18 Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/175475 Reviewed-by: Taylor Cramer <[email protected]> Commit-Queue: Yuval Peress <[email protected]>
- Loading branch information
Showing
4 changed files
with
121 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Copyright 2023 The Pigweed Authors | ||
# | ||
# 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 | ||
# | ||
# https://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. | ||
|
||
include($ENV{PW_ROOT}/pw_build/pigweed.cmake) | ||
include($ENV{PW_ROOT}/pw_async/backend.cmake) | ||
|
||
pw_add_library(pw_async.types INTERFACE | ||
HEADERS | ||
public/pw_async/context.h | ||
public/pw_async/task_function.h | ||
PUBLIC_INCLUDES | ||
public | ||
PUBLIC_DEPS | ||
pw_function | ||
pw_status | ||
) | ||
|
||
pw_add_facade(pw_async.task INTERFACE | ||
BACKEND | ||
pw_async.task_BACKEND | ||
HEADERS | ||
public/pw_async/task.h | ||
PUBLIC_INCLUDES | ||
public | ||
PUBLIC_DEPS | ||
pw_async.types | ||
pw_function | ||
pw_status | ||
) | ||
|
||
pw_add_facade(pw_async.dispatcher INTERFACE | ||
BACKEND | ||
pw_async.dispatcher_BACKEND | ||
HEADERS | ||
public/pw_async/dispatcher.h | ||
public/pw_async/function_dispatcher.h | ||
PUBLIC_INCLUDES | ||
public | ||
PUBLIC_DEPS | ||
pw_async.types | ||
pw_chrono.system_clock | ||
pw_function | ||
pw_status | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Copyright 2023 The Pigweed Authors | ||
# | ||
# 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 | ||
# | ||
# https://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. | ||
|
||
include_guard(GLOBAL) | ||
|
||
include($ENV{PW_ROOT}/pw_build/pigweed.cmake) | ||
|
||
# Backend for the pw_async module. | ||
pw_add_backend_variable(pw_async.task_BACKEND) | ||
pw_add_backend_variable(pw_async.dispatcher_BACKEND) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Copyright 2023 The Pigweed Authors | ||
# | ||
# 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 | ||
# | ||
# https://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. | ||
|
||
include($ENV{PW_ROOT}/pw_build/pigweed.cmake) | ||
|
||
pw_add_library(pw_async_basic.task_backend INTERFACE | ||
HEADERS | ||
public/pw_async_basic/task.h | ||
public_overrides/pw_async_backend/task.h | ||
PUBLIC_INCLUDES | ||
public | ||
public_overrides | ||
PUBLIC_DEPS | ||
pw_async.task.facade | ||
pw_containers.intrusive_list | ||
) | ||
|
||
pw_add_library(pw_async_basic.dispatcher_backend STATIC | ||
HEADERS | ||
public/pw_async_basic/dispatcher.h | ||
SOURCES | ||
dispatcher.cc | ||
PUBLIC_INCLUDES | ||
public | ||
PUBLIC_DEPS | ||
pw_async_basic.task_backend | ||
pw_async.dispatcher.facade | ||
pw_containers.intrusive_list | ||
pw_sync.interrupt_spin_lock | ||
pw_sync.timed_thread_notification | ||
pw_thread.thread_core | ||
) |