| 1 | // Copyright 2009-2021 Intel Corporation |
|---|---|
| 2 | // SPDX-License-Identifier: Apache-2.0 |
| 3 | |
| 4 | #pragma once |
| 5 | |
| 6 | #if defined(TASKING_INTERNAL) |
| 7 | # include "taskschedulerinternal.h" |
| 8 | #elif defined(TASKING_TBB) |
| 9 | # include "taskschedulertbb.h" |
| 10 | #elif defined(TASKING_PPL) |
| 11 | # include "taskschedulerppl.h" |
| 12 | #else |
| 13 | # error "no tasking system enabled" |
| 14 | #endif |
| 15 | |
| 16 |