mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-01 08:37:15 +01:00
16 lines
331 B
C++
16 lines
331 B
C++
|
// Copyright 2009-2021 Intel Corporation
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#if defined(TASKING_INTERNAL)
|
||
|
# include "taskschedulerinternal.h"
|
||
|
#elif defined(TASKING_TBB)
|
||
|
# include "taskschedulertbb.h"
|
||
|
#elif defined(TASKING_PPL)
|
||
|
# include "taskschedulerppl.h"
|
||
|
#else
|
||
|
# error "no tasking system enabled"
|
||
|
#endif
|
||
|
|