diff options
Diffstat (limited to '')
-rw-r--r-- | unit_tests/_pch.hpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/unit_tests/_pch.hpp b/unit_tests/_pch.hpp new file mode 100644 index 0000000..5d3c3e9 --- /dev/null +++ b/unit_tests/_pch.hpp | |||
@@ -0,0 +1,23 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <filesystem> | ||
4 | #include <source_location> | ||
5 | #include <mutex> | ||
6 | #include <variant> | ||
7 | |||
8 | #include "gtest/gtest.h" | ||
9 | |||
10 | #ifdef __cplusplus | ||
11 | extern "C" | ||
12 | { | ||
13 | #endif // __cplusplus | ||
14 | #include "lua.h" | ||
15 | #include "lualib.h" | ||
16 | #include "lauxlib.h" | ||
17 | #ifdef __cplusplus | ||
18 | } | ||
19 | #endif // __cplusplus | ||
20 | |||
21 | #include "lanes/src/allocator.hpp" | ||
22 | #include "lanes/src/compat.hpp" | ||
23 | #include "lanes/src/universe.hpp" | ||