blob: 95702662781de7f57d6146aef34eb5da462cbd36 (
plain)
1
2
3
4
5
6
7
8
|
#pragma once
#include <filesystem>
extern const std::filesystem::path YMakefile;
bool is_buildable_by_extension(const std::filesystem::path& p);
bool is_compile_unit_source_by_extension(const std::filesystem::path& p);
|