
Import('component_env', 'env')

component_env.Append(
  CPPPATH = [
    "#/vendor/gtest/include/",
    "#/vendor/gtest/",
  ],
)

libgtest_files = [
  "src/gtest-all.cc",
]

component_env.StaticLibrary('libgtest', libgtest_files)
component_env.Install('$LIBRARY_DIR', 'libgtest.a')

env.AddStaticLibraryTo("gtest", "TEST")
