aboutsummaryrefslogtreecommitdiff
path: root/unit_tests/_pch.hpp
blob: 1e98c5ab850c532ee002c35c9e7959ae4f7ffcc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#pragma once

#include <atomic>
#include <cassert>
#include <filesystem>
#include <source_location>
#include <mutex>
#include <thread>
#include <variant>

#include "catch_amalgamated.hpp"

#ifdef __cplusplus
extern "C"
{
#endif // __cplusplus
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
#ifdef __cplusplus
}
#endif // __cplusplus

#include "lanes/src/allocator.hpp"
#include "lanes/src/compat.hpp"
#include "lanes/src/universe.hpp"