Hello,
I'm struggling to get unittest++ working with Xcode and google isn't providing 
me with the answers. I would like to setup unittest++ in my Xcode project. I've 
downloaded unittest++, used terminal to build all, and pasted the source files 
and the libUnitTest++.a file into my unit test folder. I created a new c++ 
library target in Xcode. I select the unit test target and I added the 
libUnitTest++.a into the "link binary with libraries" field.

I then go to run and it start to build and then I get this error:

/Users/myName/Developer/FlowMeter/UnitTests/ExecuteTest.h:10:11: 
'Posix/SignalTranslator.h' file not found

I have only one file I am working with (main.mm):

#include <iostream>
#include  "UnitTest++.h"

TEST(FailSpectacularly)
{
    CHECK(false);
}

int main(int argc, char *argv[])
{
    return UnitTest::RunAllTests();
}


What is the way forward here? Thanks in advance for your comments!



------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
_______________________________________________
unittest-cpp-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/unittest-cpp-devel

Reply via email to