blob: 35eff8f74337138fcc88674d010870cf79efe6b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
#include <vector>
#include <string>
#include <filesystem>
#include <iostream>
#include <utility>
#include "libcppbuild.h"
#include "task.h"
#include "settings.h"
int main(int argc, const char* argv[])
{
Settings settings;
// TODO: Set from commandline
settings.builddir = "build/foo";
std::filesystem::path builddir(settings.builddir);
std::filesystem::create_directories(builddir);
auto config = configs();
std::string output = builddir / config.target;
const auto& files = config.sources;
std::vector<std::string> objects;
std::vector<Task> tasks;
for(const auto& file : files)
{
tasks.emplace_back(config, settings, file);
objects.push_back(tasks.back().targetFile);
}
if(argc == 2 && std::string(argv[1]) == "clean")
{
std::cout << "Cleaning\n";
//std::filesystem::remove_all(builddir);
for(auto& task : tasks)
{
if(task.clean() != 0)
{
return 1;
}
}
std::filesystem::remove(output);
return 0;
}
std::cout << "Building\n";
// Start all tasks
for(auto& task : tasks)
{
task.start();
}
// Wait for all tasks
for(auto& task : tasks)
{
if(task.wait() != 0)
{
return 1;
}
}
std::cout << "Linking\n";
bool dolink{false};
if(!std::filesystem::exists(output))
{
dolink = true;
}
else
{
for(const auto& object : objects)
{
if(std::filesystem::last_write_time(output) <=
std::filesystem::last_write_time(object))
{
dolink = true;
break;
}
}
}
if(!dolink)
{
std::cout << "No linking needed\n";
return 0;
}
std::string objectlist;
for(const auto& object : objects)
{
objectlist += object + " ";
}
std::string compiler = "g++ " + objectlist + " " +
config.ldflags + " " +
"-o " + output;
std::cout << compiler << "\n";
if(system(compiler.data()))
{
return 1;
}
return 0;
}
|