Skip to content

Commit

Permalink
Prepare project and subprojects folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc-André Jean committed Feb 11, 2018
1 parent cf2ead0 commit 89c16bc
Show file tree
Hide file tree
Showing 12 changed files with 236 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Qt-Ultimate-Interface.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
TEMPLATE = subdirs

SUBDIRS += \
UltimateUserInterface \
src \
test \
demo
34 changes: 34 additions & 0 deletions demo/demo.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
#-------------------------------------------------
#
# Project created by QtCreator 2018-02-10T22:33:44
#
#-------------------------------------------------

QT += core gui

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = demo
TEMPLATE = app

# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS

# You can also make your code fail to compile if you use 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


SOURCES += \
main.cpp \
mainwindow.cpp

HEADERS += \
mainwindow.h

FORMS += \
mainwindow.ui
11 changes: 11 additions & 0 deletions demo/main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();

return a.exec();
}
14 changes: 14 additions & 0 deletions demo/mainwindow.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#include "mainwindow.h"
#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}

MainWindow::~MainWindow()
{
delete ui;
}
22 changes: 22 additions & 0 deletions demo/mainwindow.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow
{
Q_OBJECT

public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();

private:
Ui::MainWindow *ui;
};

#endif // MAINWINDOW_H
24 changes: 24 additions & 0 deletions demo/mainwindow.ui
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow" >
<property name="geometry" >
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<property name="windowTitle" >
<string>MainWindow</string>
</property>
<widget class="QMenuBar" name="menuBar" />
<widget class="QToolBar" name="mainToolBar" />
<widget class="QWidget" name="centralWidget" />
<widget class="QStatusBar" name="statusBar" />
</widget>
<layoutDefault spacing="6" margin="11" />
<pixmapfunction></pixmapfunction>
<resources/>
<connections/>
</ui>
35 changes: 35 additions & 0 deletions src/src.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#-------------------------------------------------
#
# Project created by QtCreator 2018-02-10T22:30:06
#
#-------------------------------------------------

QT += widgets

TARGET = src
TEMPLATE = lib

DEFINES += SRC_LIBRARY

# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS

# You can also make your code fail to compile if you use 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

SOURCES += \
ultimateuserinterface.cpp

HEADERS += \
ultimateuserinterface.h \
src_global.h

unix {
target.path = /usr/lib
INSTALLS += target
}
12 changes: 12 additions & 0 deletions src/src_global.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#ifndef SRC_GLOBAL_H
#define SRC_GLOBAL_H

#include <QtCore/qglobal.h>

#if defined(SRC_LIBRARY)
# define SRCSHARED_EXPORT Q_DECL_EXPORT
#else
# define SRCSHARED_EXPORT Q_DECL_IMPORT
#endif

#endif // SRC_GLOBAL_H
6 changes: 6 additions & 0 deletions src/ultimateuserinterface.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include "ultimateuserinterface.h"


UltimateUserInterface::UltimateUserInterface()
{
}
13 changes: 13 additions & 0 deletions src/ultimateuserinterface.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#ifndef ULTIMATEUSERINTERFACE_H
#define ULTIMATEUSERINTERFACE_H

#include "src_global.h"

class SRCSHARED_EXPORT UltimateUserInterface
{

public:
UltimateUserInterface();
};

#endif // ULTIMATEUSERINTERFACE_H
32 changes: 32 additions & 0 deletions test/test.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#-------------------------------------------------
#
# Project created by QtCreator 2018-02-10T22:30:56
#
#-------------------------------------------------

QT += testlib

QT -= gui

TARGET = tst_ultimateuserinterfacetests
CONFIG += console
CONFIG -= app_bundle

TEMPLATE = app

# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS

# You can also make your code fail to compile if you use 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


SOURCES += \
tst_ultimateuserinterfacetests.cpp

DEFINES += SRCDIR=\\\"$$PWD/\\\"
26 changes: 26 additions & 0 deletions test/tst_ultimateuserinterfacetests.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#include <QString>
#include <QtTest>

class UltimateUserInterfaceTests : public QObject
{
Q_OBJECT

public:
UltimateUserInterfaceTests();

private Q_SLOTS:
void testCase1();
};

UltimateUserInterfaceTests::UltimateUserInterfaceTests()
{
}

void UltimateUserInterfaceTests::testCase1()
{
QVERIFY2(true, "Failure");
}

QTEST_APPLESS_MAIN(UltimateUserInterfaceTests)

#include "tst_ultimateuserinterfacetests.moc"

0 comments on commit 89c16bc

Please sign in to comment.