mirror of
https://github.com/luanti-org/luanti.git
synced 2025-09-15 18:57:08 +00:00
Add precompiled header support
Note: the <filesystem> header is not included in the default precompiled_headers.txt, because we don't use it yet, and it might be big
This commit is contained in:
parent
cdbbac5b6d
commit
9da5c5e2d0
3 changed files with 132 additions and 0 deletions
103
src/precompiled_headers.txt
Normal file
103
src/precompiled_headers.txt
Normal file
|
@ -0,0 +1,103 @@
|
|||
|
||||
# stdlib
|
||||
# ------
|
||||
|
||||
# C stuff:
|
||||
<cassert>
|
||||
<cctype>
|
||||
<cerrno>
|
||||
<cfenv>
|
||||
<cfloat>
|
||||
<cinttypes>
|
||||
<ciso646>
|
||||
<climits>
|
||||
<clocale>
|
||||
<cmath>
|
||||
<csetjmp>
|
||||
<csignal>
|
||||
<cstdarg>
|
||||
<cstdbool>
|
||||
<cstddef>
|
||||
<cstdint>
|
||||
<cstdio>
|
||||
<cstdlib>
|
||||
<cstring>
|
||||
<ctgmath>
|
||||
<ctime>
|
||||
<cuchar>
|
||||
<cwchar>
|
||||
<cwctype>
|
||||
|
||||
# Containers:
|
||||
<array>
|
||||
<deque>
|
||||
<forward_list>
|
||||
<list>
|
||||
<map>
|
||||
<queue>
|
||||
<set>
|
||||
<stack>
|
||||
<unordered_map>
|
||||
<unordered_set>
|
||||
<vector>
|
||||
|
||||
# Input/Output:
|
||||
<fstream>
|
||||
<iomanip>
|
||||
<ios>
|
||||
<iosfwd>
|
||||
<iostream>
|
||||
<istream>
|
||||
<ostream>
|
||||
<sstream>
|
||||
<streambuf>
|
||||
|
||||
# Multi-threading:
|
||||
<atomic>
|
||||
<condition_variable>
|
||||
<future>
|
||||
<mutex>
|
||||
<shared_mutex>
|
||||
<thread>
|
||||
|
||||
# Other:
|
||||
<algorithm>
|
||||
<any>
|
||||
<bitset>
|
||||
<charconv>
|
||||
<chrono>
|
||||
<codecvt>
|
||||
<complex>
|
||||
<exception>
|
||||
<execution>
|
||||
<functional>
|
||||
<initializer_list>
|
||||
<iterator>
|
||||
<limits>
|
||||
<locale>
|
||||
<memory>
|
||||
<memory_resource>
|
||||
<new>
|
||||
<numeric>
|
||||
<optional>
|
||||
<random>
|
||||
<ratio>
|
||||
<regex>
|
||||
<stdexcept>
|
||||
<string>
|
||||
<string_view>
|
||||
<system_error>
|
||||
<tuple>
|
||||
<typeindex>
|
||||
<typeinfo>
|
||||
<type_traits>
|
||||
<utility>
|
||||
<valarray>
|
||||
<variant>
|
||||
|
||||
|
||||
# libs
|
||||
# ----
|
||||
|
||||
# jsoncpp
|
||||
<json/json.h>
|
Loading…
Add table
Add a link
Reference in a new issue