summaryrefslogtreecommitdiff
path: root/test/ctor.cc
blob: caa00ee781d99cb07cd9053078963a320874cb4f (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
#include <libctor.h>

namespace
{
BuildConfigurations ctorTestConfigs()
{
	return
	{
		{
			.type = TargetType::UnitTest,
			.target = "execute_test",
			.sources = {
				"execute_test.cc",
				"uunit/uunit.cc",
				"../src/execute.cc",
			},
			.cxxflags = {
				"-std=c++17", "-O3", "-s", "-Wall", "-Werror",
				"-I../src", "-Iuunit",
				"-DOUTPUT=\"execute\"",
			},
		},
		{
			.type = TargetType::UnitTest,
			.target = "tasks_test",
			.sources = {
				"tasks_test.cc",
				"uunit/uunit.cc",
			},
			.depends = {"libctor.a"},
			.cxxflags = {
				"-std=c++17", "-O3", "-s", "-Wall", "-Werror",
				"-I../src", "-Iuunit",
				"-DOUTPUT=\"tasks\"",
			},
		},
	};
}
}

// Convenience macro
REG(ctorTestConfigs);