Menu

Tree [dec7a0] master /
 History

HTTPS access


File Date Author Commit
 doc 2018-02-05 Anton-V-K Anton-V-K [dec7a0] translations support (at the moment only Enlgis...
 translations 2018-02-05 Anton-V-K Anton-V-K [dec7a0] translations support (at the moment only Enlgis...
 .gitignore 2018-02-05 Anton-V-K Anton-V-K [dec7a0] translations support (at the moment only Enlgis...
 Readme.md 2018-02-05 Anton-V-K Anton-V-K [dec7a0] translations support (at the moment only Enlgis...
 TM.pro 2018-02-05 Anton-V-K Anton-V-K [dec7a0] translations support (at the moment only Enlgis...
 add.cpp 2016-10-29 Stanislaw Mosiolek Stanislaw Mosiolek [51194f] Initial commit
 add.h 2016-10-29 Stanislaw Mosiolek Stanislaw Mosiolek [51194f] Initial commit
 main.cpp 2016-10-29 Stanislaw Mosiolek Stanislaw Mosiolek [51194f] Initial commit
 mainwindow.cpp 2018-02-05 Anton-V-K Anton-V-K [dec7a0] translations support (at the moment only Enlgis...
 mainwindow.h 2018-02-05 Anton-V-K Anton-V-K [dec7a0] translations support (at the moment only Enlgis...
 mainwindow.ui 2018-02-05 Anton-V-K Anton-V-K [dec7a0] translations support (at the moment only Enlgis...
 multiply.cpp 2016-10-29 Stanislaw Mosiolek Stanislaw Mosiolek [51194f] Initial commit
 multiply.h 2016-10-29 Stanislaw Mosiolek Stanislaw Mosiolek [51194f] Initial commit
 numbergenerator.cpp 2016-10-29 Stanislaw Mosiolek Stanislaw Mosiolek [51194f] Initial commit
 numbergenerator.h 2016-10-29 Stanislaw Mosiolek Stanislaw Mosiolek [51194f] Initial commit
 subtraction.cpp 2016-10-29 Stanislaw Mosiolek Stanislaw Mosiolek [51194f] Initial commit
 subtraction.h 2016-10-29 Stanislaw Mosiolek Stanislaw Mosiolek [51194f] Initial commit
 taskbase.cpp 2016-10-29 Stanislaw Mosiolek Stanislaw Mosiolek [51194f] Initial commit
 taskbase.h 2016-10-29 Stanislaw Mosiolek Stanislaw Mosiolek [51194f] Initial commit
 taskfactory.cpp 2016-10-29 Stanislaw Mosiolek Stanislaw Mosiolek [51194f] Initial commit
 taskfactory.h 2016-10-29 Stanislaw Mosiolek Stanislaw Mosiolek [51194f] Initial commit

Read Me

Screenshots

Steps to build

You will need Qt Creator (Offile Qt Downloads).

  1. Release translations (lrelease - see the guidelines below).
  2. Build the desired configuration (either Debug or Release).

Guidelines

If you're building on Windows with VS2017 it would be handy to "install" two additional batch files for the smooth translations building (lupdate and lrelease.cmd) into the Qt binaries directory (%{CurrentProject:QT_INSTALL_BINS} - for instance, C:\Qt\Qt5.10.0\5.10.0\msvc2017_64\bin).
Their content for VS2017 when building for 64-bit platform (using the approach from stackoverflow):

lupdate.cmd

@echo off
"%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat" & %~dp0lupdate.exe %1

lrelease.cmd

@echo off
"%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat" & %~dp0lrelease.exe %1

Don't forget to re-configure the tools at Tools > External > Configure...