kiwi code moved to subdirectory

This commit is contained in:
Uwe Rathmann 2020-04-19 17:03:54 +02:00
parent cccf946144
commit 03b2b45ca3
11 changed files with 13 additions and 13 deletions

View File

@ -5,10 +5,10 @@
#include "AnchorBox.h" #include "AnchorBox.h"
#include "Solver.h" #include "kiwi/Solver.h"
#include "Constraint.h" #include "kiwi/Constraint.h"
#include "Variable.h" #include "kiwi/Variable.h"
#include "Expression.h" #include "kiwi/Expression.h"
#include <QskEvent.h> #include <QskEvent.h>
#include <QskQuick.h> #include <QskQuick.h>

View File

@ -1,17 +1,17 @@
CONFIG += qskexample CONFIG += qskexample
HEADERS += \ HEADERS += \
Constraint.h \ kiwi/Constraint.h \
Expression.h \ kiwi/Expression.h \
Solver.h \ kiwi/Solver.h \
Strength.h \ kiwi/Strength.h \
Term.h \ kiwi/Term.h \
Variable.h kiwi/Variable.h
SOURCES += \ SOURCES += \
Expression.cpp \ kiwi/Expression.cpp \
Constraint.cpp \ kiwi/Constraint.cpp \
Solver.cpp kiwi/Solver.cpp
HEADERS += \ HEADERS += \
AnchorBox.h AnchorBox.h