feat: targz runtime libraries

This commit is contained in:
parker
2025-08-14 22:14:51 +01:00
parent 3557c4d4e7
commit 7b823f42f3
24 changed files with 142 additions and 38 deletions

View File

@@ -1,5 +1,5 @@
#include <catch2/catch_test_macros.hpp>
#include <oneapi/tbb/parallel_for.h>
#include <tbb/parallel_for.h>
#include <iostream>
#include <boost/dll/import.hpp>
#include "Engine/Network/NetworkManager.h"
@@ -14,7 +14,7 @@ TEST_CASE("tbb")
{
constexpr int N = 100;
oneapi::tbb::parallel_for(0, N, [](int i) {
tbb::parallel_for(0, N, [](int i) {
std::cout << "Iteration " << i
<< " is running on thread "
<< std::this_thread::get_id() << std::endl;