diff options
| author | 2016-09-16 16:58:29 +0200 | |
|---|---|---|
| committer | 2016-09-16 16:58:29 +0200 | |
| commit | b060740c162d5b5aa07e4f7dd28b155f951fd971 (patch) | |
| tree | 16cbfde15da313b9cfa94ce868dafe032b210d55 | |
| parent | 9ac85f82078e96689b95e22f56306f1f1f91522b (diff) | |
| download | OneRoll-b060740c162d5b5aa07e4f7dd28b155f951fd971.tar.gz OneRoll-b060740c162d5b5aa07e4f7dd28b155f951fd971.zip | |
-fix stuff
| -rw-r--r-- | CMakeLists.txt | 1 | ||||
| -rw-r--r-- | cli/main.cpp | 2 | ||||
| -rw-r--r-- | diceParser.pro | 6 |
3 files changed, 6 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 32621be..651c3a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,6 +4,7 @@ project(diceparser) add_subdirectory(irc) add_subdirectory(cli) +add_subdirectory(mobile) #qt5_use_modules() diff --git a/cli/main.cpp b/cli/main.cpp index 21bb1ca..16faba1 100644 --- a/cli/main.cpp +++ b/cli/main.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2014 by Renaud Guezennec * -* http://renaudguezennec.homelinux.org/accueil,3.html * +* http://www.rolisteam.org/contact * * * * This file is part of DiceParser * * * diff --git a/diceParser.pro b/diceParser.pro index 3a95496..c719298 100644 --- a/diceParser.pro +++ b/diceParser.pro @@ -46,7 +46,8 @@ SOURCES += diceparser.cpp \ result/scalarresult.cpp \ parsingtoolbox.cpp \ result/stringresult.cpp \ - dicealias.cpp + dicealias.cpp \ + mobile/mainwindow.cpp HEADERS += \ @@ -60,7 +61,8 @@ HEADERS += \ result/scalarresult.h \ result/parsingtoolbox.h \ result/stringresult.h \ - dicealias.h + dicealias.h \ + mobile/mainwindow.h OTHER_FILES += README.md \ HelpMe.md |