From c49d0e408c2ed984f92ba271ad69eda817aab26d Mon Sep 17 00:00:00 2001 From: Shagen Ogandzhanian Date: Tue, 1 Jun 2021 16:30:01 +0200 Subject: [PATCH] Add web_landing to the list of examples optionally built with web --- web/settings.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/web/settings.gradle.kts b/web/settings.gradle.kts index 5214ec4faa..f40ef17abe 100644 --- a/web/settings.gradle.kts +++ b/web/settings.gradle.kts @@ -35,4 +35,5 @@ module(":web-integration-widgets", "$rootDir/integration-widgets") if (extra["COMPOSE_WEB_BUILD_WITH_EXAMPLES"]!!.toString().toBoolean() == true) { println("building with examples") module(":examples:falling_balls_with_web", "../examples/falling_balls_with_web") + module(":examples:web_landing", "../examples/web_landing") }