mirror of
https://github.com/boostorg/spirit.git
synced 2026-01-19 04:42:11 +00:00
Not intrusive. Significantly speeds up tests on MSVC (for about 3 times). Finally solves exceeding build time limits on CI with MSVC compilers. Did not set up PCH for X3, it is fast as-is (tooks only about 2 minutes). Repository tests reuse PCH from Qi/Karma tests.
16 lines
537 B
C++
16 lines
537 B
C++
/*=============================================================================
|
|
Copyright (c) 2019 Nikita Kniazev
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
=============================================================================*/
|
|
#ifdef BOOST_BUILD_PCH_ENABLED
|
|
|
|
#include <boost/spirit/include/classic.hpp>
|
|
#include <boost/core/lightweight_test.hpp>
|
|
#include <vector>
|
|
#include <string>
|
|
#include <iostream>
|
|
|
|
#endif
|