blob: 98f67162e35b4ec008390f89c0f90d28362cb4cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// -*- c++ -*-
#pragma once
#include <string>
#include <vector>
//#include <source_location>
struct BuildConfiguration
{
std::string target;
std::vector<std::string> sources;
std::vector<std::string> depends;
std::vector<std::string> cxxflags;
std::vector<std::string> cflags;
std::vector<std::string> ldflags;
};
std::vector<BuildConfiguration> configs();
void reg(const std::string& location);
|