cmake_minimum_required(VERSION 2.6)
project(a)

add_subdirectory(/usr/src/gtest gtest)
add_executable(a a.cpp)
target_link_libraries(a gtest)
