summaryrefslogtreecommitdiff
path: root/src/util.h
blob: c7318aa06e7c303fbea88addbb9d651a8f63653d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// -*- c++ -*-
// Distributed under the BSD 2-Clause License.
// See accompanying file LICENSE for details.
#pragma once

#include "ctor.h"

#include <string>
#include <filesystem>

std::string readFile(const std::string& fileName);
std::vector<std::string> readDeps(const std::string& depFile);
ctor::language languageFromExtension(const std::filesystem::path& file);
std::string cleanUp(const std::string& path);

template<typename T>
void append(T& a, const T& b)
{
	a.insert(a.end(), b.begin(), b.end());
}

//using cxx_flags = std::vector<ctor::cxx_flag>;
//using c_flags = std::vector<std::string>;
//using ld_flags= std::vector<std::string>;
//using asm_flags = std::vector<std::string>;