I have a simple test file, TestMe.cpp:
#include
TEST(MyTest, SomeTest) {
EXPECT_EQ(1, 1);
}
int main(int argc, char **argv) {
::testi
I think you are ok for your qmake file. But Why is INCLUDEPATH absolute and LIBS relative. I would try setting LIBS absolute also.
From here http://doc.trolltech.com/4.6/qmake-variable-reference.html#includepath
But what the main problem is (I think) you need to put forward slashes in INCLUDEPATH. In the docs it is like this.
INCLUDEPATH += C:/gtest-1.5.0/gtest-1.5.0/include