I'm experimenting with the current release of QCreator, which so far is quite nice. I'm having a qmake issue however.

I have two projects:

1) core - library
2) test_core - console app

The core project includes one class MyClass. My test_core.cpp file simply does this:

Qt Code:
  1. MyClass c;
To copy to clipboard, switch view to plain text mode 

When I build test_core I get undefined symbols. I've added the following to test_core.pro:

Qt Code:
  1. LIBS += -L..\core\debug -lcore
To copy to clipboard, switch view to plain text mode 

But that doesn't make any difference. I'm doing something silly - any ideas?