summaryrefslogtreecommitdiff
path: root/toolchain.cc
blob: 0a8ea98801ab746f38c09255eefc7b91fa77218b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "toolchain.h"

#include "libcppbuild.h"

std::string getTool(Tool tool)
{
	auto prefix = getConfiguration("prefix");

	switch(tool)
	{
	case Tool::CCompiler:
	case Tool::CppCompiler:
	case Tool::Archiver:
	case Tool::Linker:
		break;
	}
}