blob: f224cedc13efb42394d7d05d1aff12da4ae5a7fa [file] [log] [blame]
# Copyright 2017 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
executable("hello_scenic") {
output_name = "hello_scenic"
sources = [
"app.cc",
"app.h",
"main.cc",
]
deps = [
"//garnet/public/lib/component/cpp",
"//garnet/public/lib/escher",
"//garnet/public/lib/fidl/cpp",
"//garnet/public/lib/fsl",
"//garnet/public/lib/fxl",
"//garnet/public/fidl/fuchsia.ui.gfx",
"//garnet/public/lib/ui/scenic/cpp",
]
include_dirs = [
"//garnet/public/lib/escher",
"//third_party/glm",
"//lib",
]
defines = [ "GLM_ENABLE_EXPERIMENTAL" ]
}