blob: c26928d83509ac4f73b616023a67e80a3f00b08d (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#include <string_view>
constexpr std::string_view gitignore_file_path = ".gitignore";
constexpr std::string_view gitignore_file_content =
R"(result*
.sconsign.dblite
compile_commands.json
)";
|