diff --git a/.gitignore b/.gitignore index 3339d55..cb50635 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) /build +/test/build diff --git a/test/testwave/testwave_app.cpp b/test/testwave/testwave_app.cpp index 78a9a9d..a8d16a7 100644 --- a/test/testwave/testwave_app.cpp +++ b/test/testwave/testwave_app.cpp @@ -35,6 +35,22 @@ #include // token type #include // lexer type +#if BOOST_WAVE_SEPARATE_LEXER_INSTANTIATION == 0 +#include +#endif + +/////////////////////////////////////////////////////////////////////////////// +// Include the grammar definitions, if these shouldn't be compiled separately +// (ATTENTION: _very_ large compilation times!) +#if BOOST_WAVE_SEPARATE_GRAMMAR_INSTANTIATION == 0 +#include +#include +#include +#include +#include +#include +#endif + // test application related headers #include "cmd_line_utils.hpp" #include "testwave_app.hpp"