--- /dev/null
+# This file is used to ignore files which are generated
+# ----------------------------------------------------------------------------
+
+*~
+*.autosave
+*.a
+*.core
+*.moc
+*.o
+*.obj
+*.orig
+*.rej
+*.so
+*.so.*
+*_pch.h.cpp
+*_resource.rc
+*.qm
+.#*
+*.*#
+core
+!core/
+tags
+.DS_Store
+.directory
+*.debug
+Makefile*
+*.prl
+*.app
+moc_*.cpp
+ui_*.h
+qrc_*.cpp
+Thumbs.db
+*.res
+*.rc
+/.qmake.cache
+/.qmake.stash
+/build/
+/binaries/
+
+# qtcreator generated files
+*.pro.user*
+
+# xemacs temporary files
+*.flc
+
+# Vim temporary files
+.*.swp
+
+# Visual Studio generated files
+*.ib_pdb_index
+*.idb
+*.ilk
+*.pdb
+*.sln
+*.suo
+*.vcproj
+*vcproj.*.*.user
+*.ncb
+*.sdf
+*.opensdf
+*.vcxproj
+*vcxproj.*
+
+# MinGW generated files
+*.Debug
+*.Release
+
+# Python byte code
+*.pyc
+
+# Binaries
+# --------
+*.dll
+*.exe
+
--- /dev/null
+platform_path = unknown-platform
+compiler_path = unknown-compiler
+processor_path = unknown-processor
+build_path = unknown-build
+
+PLATFORM_WIN {
+ platform_path = windows
+}
+
+PLATFORM_OSX {
+ platform_path = osx
+}
+
+PLATFORM_LINUX {
+ platform_path = linux
+}
+
+COMPILER_GCC {
+ compiler_path = gcc
+}
+
+COMPILER_MSVC2017 {
+ compiler_path = msvc2017
+}
+
+COMPILER_CLANG {
+ compiler_path = clang
+}
+
+PROCESSOR_x64 {
+ processor_path = x86_64
+}
+
+PROCESSOR_x86 {
+ processor_path = x86
+}
+
+BUILD_DEBUG {
+ build_path = debug
+} else {
+ build_path = release
+}
+DESTINATION_PATH = $$platform_path/$$compiler_path/$$processor_path/$$build_path
+
+message(Dest path: $${DESTINATION_PATH})
--- /dev/null
+win32 {
+ CONFIG += PLATFORM_WIN
+ message(PLATFORM_WIN)
+ win32-g++ {
+ CONFIG += COMPILER_GCC
+ message(COMPILER_GCC)
+ }
+ win32-msvc2017 {
+ CONFIG += COMPILER_MSVC2017
+ message(COMPILER_MSVC2017)
+ win32-msvc2017:QMAKE_TARGET.arch = x86_64
+ }
+}
+
+linux {
+ CONFIG += PLATFORM_LINUX
+ message(PLATFORM_LINUX)
+ # Make QMAKE_TARGET arch available for Linux
+ !contains(QT_ARCH, x86_64){
+ QMAKE_TARGET.arch = x86
+ } else {
+ QMAKE_TARGET.arch = x86_64
+ }
+ linux-g++{
+ CONFIG += COMPILER_GCC
+ message(COMPILER_GCC)
+ }
+}
+
+macx {
+ CONFIG += PLATFORM_OSX
+ message(PLATFORM_OSX)
+ macx-clang {
+ CONFIG += COMPILER_CLANG
+ message(COMPILER_CLANG)
+ QMAKE_TARGET.arch = x86_64
+ }
+ macx-clang-32{
+ CONFIG += COMPILER_CLANG
+ message(COMPILER_CLANG)
+ QMAKE_TARGET.arch = x86
+ }
+}
+contains(QMAKE_TARGET.arch, x86_64) {
+ CONFIG += PROCESSOR_x64
+ message(PROCESSOR_x64)
+} else {
+ CONFIG += PROCESSOR_x86
+ message(PROCESSOR_x86)
+}
+CONFIG(debug, release|debug) {
+ CONFIG += BUILD_DEBUG
+ message(BUILD_DEBUG)
+} else {
+ CONFIG += BUILD_RELEASE
+ message(BUILD_RELEASE)
+}
--- /dev/null
+include(qmake-target-platform.pri)
+include(qmake-destination-path.pri)
+
+QT += quick xml
+CONFIG += c++17
+
+# The following define makes your compiler emit warnings if you use
+# any Qt feature that has been marked deprecated (the exact warnings
+# depend on your compiler). Refer to the documentation for the
+# deprecated API to know how to port your code away from it.
+DEFINES += QT_DEPRECATED_WARNINGS
+
+# You can also make your code fail to compile if it uses deprecated APIs.
+# In order to do so, uncomment the following line.
+# You can also select to disable deprecated APIs only up to a certain version of Qt.
+DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
+
+INCLUDEPATH += src
+
+SOURCES += \
+ src/character.cpp \
+ src/main.cpp
+
+RESOURCES += src/qml.qrc
+
+# Additional import path used to resolve QML modules in Qt Creator's code model
+QML_IMPORT_PATH =
+
+# Additional import path used to resolve QML modules just for Qt Quick Designer
+QML_DESIGNER_IMPORT_PATH =
+
+# Default rules for deployment.
+qnx: target.path = /tmp/$${TARGET}/bin
+else: unix:!android: target.path = /opt/$${TARGET}/bin
+!isEmpty(target.path): INSTALLS += target
+
+HEADERS += \
+ src/character.h \
+ src/definitions.h
+
+DESTDIR = $$PWD/binaries/$$DESTINATION_PATH
+OBJECTS_DIR = $$PWD/build/$$DESTINATION_PATH/.obj
+MOC_DIR = $$PWD/build/$$DESTINATION_PATH/.moc
+RCC_DIR = $$PWD/build/$$DESTINATION_PATH/.qrc
+UI_DIR = $$PWD/build/$$DESTINATION_PATH/.ui
+
+message(splittermond-assistant output dir: $${DESTDIR})
+message(splittermond-assistant project dir: $${PWD})
--- /dev/null
+#include "character.h"
+
+Character::Character()
+{
+
+}
--- /dev/null
+#ifndef CHARACTER_H
+#define CHARACTER_H
+
+#include <QObject>
+
+class Character
+{
+public:
+ Character();
+};
+
+#endif // CHARACTER_H
--- /dev/null
+#ifndef DEFINITIONS_H
+#define DEFINITIONS_H
+#include <unordered_map>
+#include <utility>
+
+enum Skill {
+acrobatics,
+alchemy,
+leadership,
+arcanelore,
+athletics,
+performance,
+diplomacy,
+clscraft,
+empathy,
+determination,
+dexterity,
+history,
+craftmanship,
+heal,
+stealth,
+hunting,
+countrylore,
+nature,
+eloquence,
+locksntraps,
+swim,
+seafaring,
+streetlore,
+animals,
+survival,
+perception,
+endurance,
+antimagic,
+controlmagic,
+motionmagic,
+insightmagic,
+stonemagic,
+firemagic,
+healmagic,
+illusionmagic,
+combatmagic,
+lightmagic,
+naturemagic,
+shadowmagic,
+fatemagic,
+protectionmagic,
+enhancemagic,
+deathmagic,
+transformationmagic,
+watermagic,
+windmagic
+};
+
+enum Attribute {
+ charisma,
+ agility,
+ intuition,
+ constitution,
+ mystic,
+ strength,
+ mind,
+ willpower
+};
+
+const std::unordered_map<Skill, std::pair<Attribute, Attribute>> skillAttributes();
+
+
+
+#endif // DEFINITIONS_H
--- /dev/null
+#include <QGuiApplication>
+#include <QQmlApplicationEngine>
+#include "definitions.h"
+
+int main(int argc, char *argv[])
+{
+ QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
+
+ QGuiApplication app(argc, argv);
+
+ QQmlApplicationEngine engine;
+ const QUrl url(QStringLiteral("qrc:/main.qml"));
+ QObject::connect(&engine, &QQmlApplicationEngine::objectCreated,
+ &app, [url](QObject *obj, const QUrl &objUrl) {
+ if (!obj && url == objUrl)
+ QCoreApplication::exit(-1);
+ }, Qt::QueuedConnection);
+ engine.load(url);
+
+ return app.exec();
+}
--- /dev/null
+import QtQuick 2.13
+import QtQuick.Window 2.13
+
+Window {
+ visible: true
+ width: 640
+ height: 480
+ title: qsTr("Hello World")
+}
--- /dev/null
+<RCC>
+ <qresource prefix="/">
+ <file>main.qml</file>
+ </qresource>
+</RCC>