summaryrefslogtreecommitdiff
path: root/libcppbuild.h
blob: e4a7801ba5940c98fc405b1f0e88b40d232bb6a1 (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::vector<std::string> cxxflags;
	std::vector<std::string> cflags;
	std::string ldflags;
};

BuildConfiguration configs();