summaryrefslogtreecommitdiff
path: root/test/ctor.cc
blob: aed3ee51f7a52eeb100d19048b40b9e2185208e7 (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
#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\"",
			},
		}
	};
}
}

// Convenience macro
REG(ctorTestConfigs);