#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);