[M6] manifest: add dev_dependencies and [build].include_dirs
This commit is contained in:
@@ -206,9 +206,8 @@ TEST_CASE("cmake_lists emits find_package per dep", "[codegen][cmake]") {
|
||||
|
||||
TEST_CASE("cmake_lists honors warnings_as_errors", "[codegen][cmake]") {
|
||||
Manifest m{
|
||||
pkg("app"),
|
||||
{},
|
||||
BuildSettings{.warnings_as_errors = true, .sanitizers = {}},
|
||||
.package = pkg("app"),
|
||||
.build = BuildSettings{.warnings_as_errors = true, .sanitizers = {}},
|
||||
};
|
||||
DiscoveredLayout layout{
|
||||
.library = std::nullopt,
|
||||
@@ -226,10 +225,9 @@ TEST_CASE("cmake_lists honors warnings_as_errors", "[codegen][cmake]") {
|
||||
|
||||
TEST_CASE("cmake_lists honors sanitizers", "[codegen][cmake]") {
|
||||
Manifest m{
|
||||
pkg("app"),
|
||||
{},
|
||||
BuildSettings{.warnings_as_errors = false,
|
||||
.sanitizers = {"address", "undefined"}},
|
||||
.package = pkg("app"),
|
||||
.build = BuildSettings{.warnings_as_errors = false,
|
||||
.sanitizers = {"address", "undefined"}},
|
||||
};
|
||||
DiscoveredLayout layout{
|
||||
.library = std::nullopt,
|
||||
|
||||
Reference in New Issue
Block a user