blob: cd3f473091016246fd2f9ac9c1dc1b3539c18529 [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("pose_buffer") {
output_name = "pose_buffer"
sources = [
"app.cc",
"app.h",
"main.cc",
]
deps = [
"//garnet/public/lib/component/cpp",
"//garnet/public/lib/escher",
"//garnet/public/lib/fsl",
"//garnet/public/lib/fxl",
"//garnet/public/lib/ui/scenic/cpp",
"//sdk/fidl/fuchsia.ui.gfx",
"//sdk/lib/fidl/cpp",
]
include_dirs = [
"//garnet/public/lib/escher",
"//third_party/glm",
"//lib",
]
defines = [ "GLM_ENABLE_EXPERIMENTAL" ]
}