diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/ctor.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/ctor.cc b/test/ctor.cc index 1a63486..fcb275d 100644 --- a/test/ctor.cc +++ b/test/ctor.cc @@ -10,7 +10,7 @@ ctor::BuildConfigurations ctorTestConfigs(const ctor::Settings& settings) return { { - .type = ctor::TargetType::UnitTest, + .type = ctor::target_type::unit_test, .target = "execute_test", .sources = { "execute_test.cc", @@ -27,7 +27,7 @@ ctor::BuildConfigurations ctorTestConfigs(const ctor::Settings& settings) }, }, { - .type = ctor::TargetType::UnitTest, + .type = ctor::target_type::unit_test, .target = "tasks_test", .sources = { "tasks_test.cc", @@ -44,7 +44,7 @@ ctor::BuildConfigurations ctorTestConfigs(const ctor::Settings& settings) }, }, { - .type = ctor::TargetType::UnitTest, + .type = ctor::target_type::unit_test, .target = "source_type_test", .sources = { "source_type_test.cc", @@ -61,7 +61,7 @@ ctor::BuildConfigurations ctorTestConfigs(const ctor::Settings& settings) }, }, { - .type = ctor::TargetType::UnitTest, + .type = ctor::target_type::unit_test, .target = "tools_test", .sources = { "tools_test.cc", @@ -78,7 +78,7 @@ ctor::BuildConfigurations ctorTestConfigs(const ctor::Settings& settings) }, }, { - .type = ctor::TargetType::UnitTestLib, + .type = ctor::target_type::unit_test_library, .target = "libctor_nomain.a", .sources = { "../src/build.cc", |