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

#include <string>
#include <vector>

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

BuildConfiguration configs();