blob: 50b4459e598ec19d50fd69b0052723692c9c65c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// -*- c++ -*-
#pragma once
#include <string>
#include <vector>
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();
|