#ifndef DDS_LOGGING_HPP_INCLUDED | |||||
#define DDS_LOGGING_HPP_INCLUDED | |||||
#pragma once | |||||
#include <spdlog/fmt/ostr.h> | #include <spdlog/fmt/ostr.h> | ||||
#include <spdlog/sinks/stdout_color_sinks.h> | #include <spdlog/sinks/stdout_color_sinks.h> | ||||
#include <spdlog/spdlog.h> | #include <spdlog/spdlog.h> | ||||
#endif // DDS_LOGGING_HPP_INCLUDED |
#ifndef DDS_PROC_HPP_INCLUDED | |||||
#define DDS_PROC_HPP_INCLUDED | |||||
#pragma once | |||||
#include <string> | #include <string> | ||||
#include <string_view> | #include <string_view> | ||||
proc_result run_proc(const std::vector<std::string>& args); | proc_result run_proc(const std::vector<std::string>& args); | ||||
} // namespace dds | } // namespace dds | ||||
#endif // DDS_PROC_HPP_INCLUDED |
#ifndef DDS_TOOLCHAIN_HPP_INCLUDED | |||||
#define DDS_TOOLCHAIN_HPP_INCLUDED | |||||
#pragma once | |||||
#include <dds/util/fs.hpp> | #include <dds/util/fs.hpp> | ||||
}; | }; | ||||
} // namespace dds | } // namespace dds | ||||
#endif // DDS_TOOLCHAIN_HPP_INCLUDED |
#ifndef DDS_UTIL_TEST_HPP_INCLUDED | |||||
#define DDS_UTIL_TEST_HPP_INCLUDED | |||||
#pragma once | |||||
#include <iostream> | #include <iostream> | ||||
static_assert(true) | static_assert(true) | ||||
} // namespace dds | } // namespace dds | ||||
#endif // DDS_UTIL_TEST_HPP_INCLUDED |