summaryrefslogtreecommitdiff
path: root/libcppbuild.h
blob: 6cc04ace8db1db3664bc10c3a38c2afdd0f4d1d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// -*- c++ -*-
#pragma once

#include <string>
#include <vector>

struct BuildConfiguration
{
	std::string target;
	std::vector<std::string> sources;
	std::vector<std::string> cxxflags;
	std::vector<std::string> cflags;
	std::vector<std::string> ldflags;
};

std::vector<BuildConfiguration> configs();