environment.ipp 678 B

123456789101112131415161718
  1. // Copyright (c) 2022 Klemens D. Morgenstern
  2. //
  3. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef BOOST_PROCESS_V2_DETAIL_IMPL_ENVIRONMENT_IPP
  6. #define BOOST_PROCESS_V2_DETAIL_IMPL_ENVIRONMENT_IPP
  7. #include <boost/process/v2/detail/config.hpp>
  8. #if defined(BOOST_PROCESS_V2_WINDOWS)
  9. #include <boost/process/v2/detail/impl/environment_win.ipp>
  10. #elif defined(BOOST_PROCESS_V2_POSIX)
  11. #include <boost/process/v2/detail/impl/environment_posix.ipp>
  12. #else
  13. #error Operating System not supported.
  14. #endif
  15. #endif //BOOST_PROCESS_V2_DETAIL_IMPL_ENVIRONMENT_IPP