build: created separate bin folder for each target.

Changed build process to use an individual bin/<subfolder> for each target.
This way each target has its own data folder and its own set of dlls.
This commit is contained in:
malte_langkabel
2014-06-30 16:39:23 +02:00
parent 5ceb7a4b43
commit b38252e894
43 changed files with 46 additions and 24 deletions
+61
View File
@@ -0,0 +1,61 @@
#include "test_header.h"
char* name;
H g;
int ceil(float a)
{
return static_cast<int>(a) + 1;
}
namespace X
{
struct A;
enum E
{
P,
Q
};
}
class B
{
public:
class C
{
static const int amount;
};
B();
virtual ~B()
{
}
protected:
virtual void process() = 0;
private:
int getCount() const
{
return count;
}
const int count;
H h;
};
B::B()
: count(0)
{
}
namespace
{
int sum(int a, int b)
{
int c = a + b;
return c;
}
}