MinetestMapperGui - Graphical userinterface for mtmapper

twoelk
Member
Posts: 1482
Joined: Fri Apr 19, 2013 16:19
GitHub: twoelk
IRC: twoelk
In-game: twoelk
Location: northern Germany

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by twoelk » Post

great stuff!
sorry for not posting praise earllier
been busy mapping

oh boy, allmost everything I talked about lately to you has been added
and I havn't even tried all features yet

User avatar
addi
Member
Posts: 666
Joined: Thu Sep 20, 2012 03:16
GitHub: adrido
Location: Black-Forest, Germany

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by addi » Post

Update:
Added special color line edit to easier choose a color.
Better geometry mode. (thanks to Rogier-5 aka Argos)
Improved Tiles Tab.
Minetestmapper location is now configurable. (thanks to Rogier-5 aka Argos)
Updated German translation.
Windows downloads deployed as installer now (This is much easier for me to provide a new version; and easier to install and to update)
Please complain if there is something wrong with the installer.

And much more bug-fixes and improvements.

Download
Setup Minetest Mapper Gui x32 (0.6.1.4).exe 15.1 MB
Setup Minetest Mapper Gui x64 (0.6.1.4).exe 16.3 MB

User avatar
Napiophelios
Member
Posts: 1035
Joined: Mon Jul 07, 2014 01:14
GitHub: Napiophelios
IRC: Nappi
In-game: Nappi

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by Napiophelios » Post

Thanks for the update Addi.
I love the work you put into your Inno Installer, very nicely done :)
In the next update (if there is one planned), is there any way you can make
a check box to allow users to avoid the shortcut creation in startup programs folder
like you give them with creating desktop shortcuts?

Thanks again, this is a great GUI you have made.

User avatar
lightonflux
Member
Posts: 384
Joined: Mon Nov 11, 2013 07:22
In-game: lof
Location: Germany

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by lightonflux » Post

The file name your mention in your first post is written differently: MinetestMapperGui.pro Not all lower case. On real file systems (sorry) that makes a difference and the file can't be found.

Please replace

Code: Select all

qmake minetestmappergui.pro
with
qmake MinetestMapperGui.pro 

User avatar
addi
Member
Posts: 666
Joined: Thu Sep 20, 2012 03:16
GitHub: adrido
Location: Black-Forest, Germany

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by addi » Post

Napiophelios wrote:Thanks for the update Addi.
I love the work you put into your Inno Installer, very nicely done :)
In the next update (if there is one planned), is there any way you can make
a check box to allow users to avoid the shortcut creation in startup programs folder
like you give them with creating desktop shortcuts?

Thanks again, this is a great GUI you have made.
Of course there will be updates.
In case you meant the start menu programs folder and not the startup folder, yes, thats possible. Ill do it in next release.
lightonflux wrote:The file name your mention in your first post is written differently: MinetestMapperGui.pro Not all lower case. On real file systems (sorry) that makes a difference and the file can't be found.
...
Thanks for reporting, I corrected it. Complain to Excalibur Zero that he is not using a 'real file system' ;-P

User avatar
Glorfindel
Member
Posts: 137
Joined: Tue Jul 07, 2015 20:05
GitHub: the1glorfindel
IRC: Glorfindel DoomWeaver
In-game: Glorfindel

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by Glorfindel » Post

I can't get it to build on my 32 bit ubuntu 15.10 installation. make gives the following errors (I did run qmake beforehand and it seemed to complete without errors)

Code: Select all

minetest@minetest:~/Downloads/Minetest/minetestmapper/minetestmappergui$ make
/usr/lib/i386-linux-gnu/qt4/bin/uic mainwindow.ui -o ui_mainwindow.h
make: /usr/lib/i386-linux-gnu/qt4/bin/uic: Command not found
Makefile:227: recipe for target 'ui_mainwindow.h' failed
make: *** [ui_mainwindow.h] Error 127
minetest@minetest:~/Downloads/Minetest/minetestmapper/minetestmappergui$ 
Edit: it seems I have to install qt first, I'll try that.
Edit 2: same error :(

User avatar
addi
Member
Posts: 666
Joined: Thu Sep 20, 2012 03:16
GitHub: adrido
Location: Black-Forest, Germany

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by addi » Post

hi, It looks like you are using Qt4. You have to update to Qt5, than it should work.

Code: Select all

sudo apt-get install qt5-default qttools5-dev-tools
*Source: http://ubuntuforums.org/showthread.php? ... st12797782

please tell me if it works then.

User avatar
Glorfindel
Member
Posts: 137
Joined: Tue Jul 07, 2015 20:05
GitHub: the1glorfindel
IRC: Glorfindel DoomWeaver
In-game: Glorfindel

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by Glorfindel » Post

qt5-default was already installed, qttools5-dev-tools installed without errors. But executing make prints the same error :|
Maybe I should remove qt 4?
Edit: I ran qmake again, make seems to be working now...
It works!
now one more question, which doesn't really belong here I guess, but can I use this to make a map of a server too?

User avatar
addi
Member
Posts: 666
Joined: Thu Sep 20, 2012 03:16
GitHub: adrido
Location: Black-Forest, Germany

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by addi » Post

yes of course, just enable_local_map_saving = true in minetest.conf and visit the server.
Then you can generate a map(*.png) of your local map copy from the server you visited.

User avatar
Glorfindel
Member
Posts: 137
Joined: Tue Jul 07, 2015 20:05
GitHub: the1glorfindel
IRC: Glorfindel DoomWeaver
In-game: Glorfindel

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by Glorfindel » Post

Perfect! Thank you so much for this program!

Edit: ok, I seem to be on a roll today... new problem, with the minetestmapper c++ version and the builtin python version it complains of the same thing:

Code: Select all

option --colors not defined

Argos
Member
Posts: 40
Joined: Tue Mar 04, 2014 21:47

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by Argos » Post

Glorfindel wrote:Perfect! Thank you so much for this program!

Edit: ok, I seem to be on a roll today... new problem, with the minetestmapper c++ version and the builtin python version it complains of the same thing:

Code: Select all

option --colors not defined
I don't know whether you got this problem solved yet. Just in case (and for other people reading this):

Both the python version and the standard version of minetestmapper don't support the '--colors' option. They also don't support a whole lot of other options that MinetestMapperGui uses / needs.

ATM MinetestMapperGui really only works with my version of minetestmapper: https://github.com/Rogier-5/minetest-mapper-cpp.
My mods & tools:
My fork of Minetestmapper - much improved - features, manual, Windows downloads
[MOD] Wrench (rotate:wrench) - improved screwdriver alternative - manual, download

User avatar
Glorfindel
Member
Posts: 137
Joined: Tue Jul 07, 2015 20:05
GitHub: the1glorfindel
IRC: Glorfindel DoomWeaver
In-game: Glorfindel

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by Glorfindel » Post

Thanks!

twoelk
Member
Posts: 1482
Joined: Fri Apr 19, 2013 16:19
GitHub: twoelk
IRC: twoelk
In-game: twoelk
Location: northern Germany

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by twoelk » Post

somehow I just can't get the profiles to work. Non seem to be saved. Must be missing something.

User avatar
addi
Member
Posts: 666
Joined: Thu Sep 20, 2012 03:16
GitHub: adrido
Location: Black-Forest, Germany

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by addi » Post

Oh, Your right. The profile gets saved and loaded correctly. It does only not show up in the menubar. If you want, you can take a look into %appdata%/MinetestMapperGui/profiles/ folder, and check if they are there.

Thanks for reporting, Ill fix that asap.

Code: Select all

Write profile "asdf" to: ".../AppData/Roaming/MinetestMapperGui/profiles/asdf.ini"
...
Reading profile ".../AppData/Roaming/MinetestMapperGui/profiles/asdf.ini"

User avatar
addi
Member
Posts: 666
Joined: Thu Sep 20, 2012 03:16
GitHub: adrido
Location: Black-Forest, Germany

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by addi » Post

Sorry, that you had to wait so long.

Here is a new (beta) release for Windows (x32). I had to reinstall my whole development environment some time ago due a HDD failure.
Also the Rogier-5's (aka Argos) minetest mapper is now compiled by me using Microsoft Visual C++ compiler 2015.
I tested it on various systems, but I cannot say if it works on all. So, please report any error you find, or any dll that is missing.
Reports that everything works are welcome too :-)
Thanks.

@twoelk the profiles should be visible now.

inetestMapperGui beta 24.1 MB

In the case it does not work, you can still download the old builds:
Setup Minetest Mapper Gui x32 (0.6.1.4).exe 15.1 MB (old but stable)
Setup Minetest Mapper Gui x64 (0.6.1.4).exe 16.3 MB (old but stable)

twoelk
Member
Posts: 1482
Joined: Fri Apr 19, 2013 16:19
GitHub: twoelk
IRC: twoelk
In-game: twoelk
Location: northern Germany

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by twoelk » Post

no problem, the rest worked as usual.

I did indeed find the profile files and started playing with them. I do use all my Minetest stuff from a mobile harddisk though and tend to plug it into many different machines and often even different operating systems. I usually try to keep everything as portable as possible und would really appreciate a run_in_place version. That would also aid with my "Minetest-and-Tools-on-a-Stick" project.

I have not spend much time with the mapper lately due to having projects in different towns at the moment, In fact right know I'm packing again as I'm expected in Berlin in a few hours. I don't know wether I will have time to "play" this week but I should be back by the middle of next week as I have a little "project" in Hamburg-Finkenwerder that I'm allready all excited about. That is before the next project starts which will be in the Frankfurt area. Judging by the massive flooding in the last weeks that might be postponed by some weeks though.

u34

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by u34 » Post

addi wrote:Sorry, that you had to wait so long.

Here is a new (beta) release for Windows (x32). I had to reinstall my whole development environment some time ago due a HDD failure.
Also the Rogier-5's (aka Argos) minetest mapper is now compiled by me using Microsoft Visual C++ compiler 2015.
I tested it on various systems, but I cannot say if it works on all. So, please report any error you find, or any dll that is missing.
Reports that everything works are welcome too :-)
Thanks.

@twoelk the profiles should be visible now.

inetestMapperGui beta 24.1 MB

In the case it does not work, you can still download the old builds:
Setup Minetest Mapper Gui x32 (0.6.1.4).exe 15.1 MB (old but stable)
Setup Minetest Mapper Gui x64 (0.6.1.4).exe 16.3 MB (old but stable)
Beta build is great...

+1

User avatar
Gael de Sailly
Member
Posts: 845
Joined: Sun Jan 26, 2014 17:01
GitHub: gaelysam
IRC: Gael-de-Sailly
In-game: Gael-de-Sailly gaelysam
Location: Voiron, France

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by Gael de Sailly » Post

I don't manage to compile:

Code: Select all

g++ -c -m64 -pipe -O2 -Wall -W -D_REENTRANT -fPIE -DGIT_VERSION=\"0.6.1.7.d383292\" -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++-64 -I. -isystem /usr/include/x86_64-linux-gnu/qt5 -isystem /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -I. -I. -o mainwindow.o mainwindow.cpp
In file included from mainwindow.cpp:2:0:
ui_mainwindow.h:13:25: fatal error: QtGui/QAction: Aucun fichier ou dossier de ce type
 #include <QtGui/QAction>
                         ^
compilation terminated.
make: *** [mainwindow.o] Erreur 1
Just realize how bored we would be if the world was perfect.

User avatar
addi
Member
Posts: 666
Joined: Thu Sep 20, 2012 03:16
GitHub: adrido
Location: Black-Forest, Germany

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by addi » Post

Which OS do you use?

User avatar
Gael de Sailly
Member
Posts: 845
Joined: Sun Jan 26, 2014 17:01
GitHub: gaelysam
IRC: Gael-de-Sailly
In-game: Gael-de-Sailly gaelysam
Location: Voiron, France

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by Gael de Sailly » Post

Ubuntu 14.04, 64-bits.
Just realize how bored we would be if the world was perfect.

User avatar
addi
Member
Posts: 666
Joined: Thu Sep 20, 2012 03:16
GitHub: adrido
Location: Black-Forest, Germany

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by addi » Post

I have set up a vm and installed Ubuntu 14.04 64. Then I followed the Instruction how to install Qt on Ubuntu https://wiki.qt.io/Install_Qt_5_on_Ubuntu .
I compiled and run Minetestmappergui successful. I hope a more experienced Ubuntu user can help you, sorry :-(

twoelk
Member
Posts: 1482
Joined: Fri Apr 19, 2013 16:19
GitHub: twoelk
IRC: twoelk
In-game: twoelk
Location: northern Germany

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by twoelk » Post

so

Code: Select all

fatal error: QtGui/QAction: Aucun fichier ou dossier de ce type
 #include <QtGui/QAction>
sort of translates to "could not find the referenced resources"?

maybe you could both compare the needed libraries to see what is different in your setups and what is missing. Maybe it is just a wrong path?

User avatar
Gael de Sailly
Member
Posts: 845
Joined: Sun Jan 26, 2014 17:01
GitHub: gaelysam
IRC: Gael-de-Sailly
In-game: Gael-de-Sailly gaelysam
Location: Voiron, France

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by Gael de Sailly » Post

addi wrote:Then I followed the Instruction how to install Qt on Ubuntu https://wiki.qt.io/Install_Qt_5_on_Ubuntu .
I suppose I don't need Qt Creator, only the libraries. How to get them?
twoelk wrote:so

Code: Select all

fatal error: QtGui/QAction: Aucun fichier ou dossier de ce type
 #include <QtGui/QAction>
sort of translates to "could not find the referenced resources"?
That's written in French. "Aucun fichier ou dossier de ce type" litterally means "No file or directory like this".
Just realize how bored we would be if the world was perfect.

User avatar
addi
Member
Posts: 666
Joined: Thu Sep 20, 2012 03:16
GitHub: adrido
Location: Black-Forest, Germany

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by addi » Post

hmm according to this, you have to run
"sudo apt-get install qt5-default"
in the command line.

Then navigate to MinetestMapperGui directory and run "qmake MinetestMapperGui.pro" and "make".

User avatar
Gael de Sailly
Member
Posts: 845
Joined: Sun Jan 26, 2014 17:01
GitHub: gaelysam
IRC: Gael-de-Sailly
In-game: Gael-de-Sailly gaelysam
Location: Voiron, France

Re: MinetestMapperGui - Graphical userinterface for mtmapper

by Gael de Sailly » Post

qt5-default is installed on my computer, and that doesn't work.
But I've tried on my laptop (14.04 too). qt5-default wasn't installed, so I've installed it, and surprisingly it works.
I still get an impressive quantity of non-fatal error messages: is that normal?

Code: Select all

/usr/lib/x86_64-linux-gnu/qt5/bin/uic mainwindow.ui -o ui_mainwindow.h
/usr/lib/x86_64-linux-gnu/qt5/bin/uic geometrywidget.ui -o ui_geometrywidget.h
/usr/lib/x86_64-linux-gnu/qt5/bin/uic configdialog.ui -o ui_configdialog.h
g++ -c -m64 -pipe -O2 -Wall -W -D_REENTRANT -fPIE -DGIT_VERSION=\"0.6.1.3.dbb87a7\" -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++-64 -I. -isystem /usr/include/x86_64-linux-gnu/qt5 -isystem /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -I. -I. -o main.o main.cpp
g++ -c -m64 -pipe -O2 -Wall -W -D_REENTRANT -fPIE -DGIT_VERSION=\"0.6.1.3.dbb87a7\" -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++-64 -I. -isystem /usr/include/x86_64-linux-gnu/qt5 -isystem /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -I. -I. -o mainwindow.o mainwindow.cpp
In file included from ui_mainwindow.h:43:0,
                 from mainwindow.cpp:2:
geometrywidget.h:52:96: warning: non-static data member initializers only available with -std=c++11 or -std=gnu++11 [enabled by default]
     const QRegularExpression corners = QRegularExpression("(-?\\d*),(-?\\d*):(-?\\d*),(-?\\d*)");
                                                                                                ^
geometrywidget.h:53:104: warning: non-static data member initializers only available with -std=c++11 or -std=gnu++11 [enabled by default]
     const QRegularExpression centerDimension = QRegularExpression("(-?\\d*),(-?\\d*):(-?\\d*)x(-?\\d*)");
                                                                                                        ^
geometrywidget.h:54:113: warning: non-static data member initializers only available with -std=c++11 or -std=gnu++11 [enabled by default]
     const QRegularExpression cornerDimension = QRegularExpression("(-?\\d*)[,:](-?\\d*)[+-](-?\\d*)[+-](-?\\d*)");
                                                                                                                 ^
geometrywidget.h:55:117: warning: non-static data member initializers only available with -std=c++11 or -std=gnu++11 [enabled by default]
     const QRegularExpression cornerDimensionAlternate = QRegularExpression("(\\d*)x(\\d*)[+]?(-?\\d+)?[+]?(-?\\d+)?");
                                                                                                                     ^
g++ -c -m64 -pipe -O2 -Wall -W -D_REENTRANT -fPIE -DGIT_VERSION=\"0.6.1.3.dbb87a7\" -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++-64 -I. -isystem /usr/include/x86_64-linux-gnu/qt5 -isystem /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -I. -I. -o colorlineedit.o colorlineedit.cpp
g++ -c -m64 -pipe -O2 -Wall -W -D_REENTRANT -fPIE -DGIT_VERSION=\"0.6.1.3.dbb87a7\" -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++-64 -I. -isystem /usr/include/x86_64-linux-gnu/qt5 -isystem /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -I. -I. -o geometrywidget.o geometrywidget.cpp
In file included from geometrywidget.cpp:1:0:
geometrywidget.h:52:96: warning: non-static data member initializers only available with -std=c++11 or -std=gnu++11 [enabled by default]
     const QRegularExpression corners = QRegularExpression("(-?\\d*),(-?\\d*):(-?\\d*),(-?\\d*)");
                                                                                                ^
geometrywidget.h:53:104: warning: non-static data member initializers only available with -std=c++11 or -std=gnu++11 [enabled by default]
     const QRegularExpression centerDimension = QRegularExpression("(-?\\d*),(-?\\d*):(-?\\d*)x(-?\\d*)");
                                                                                                        ^
geometrywidget.h:54:113: warning: non-static data member initializers only available with -std=c++11 or -std=gnu++11 [enabled by default]
     const QRegularExpression cornerDimension = QRegularExpression("(-?\\d*)[,:](-?\\d*)[+-](-?\\d*)[+-](-?\\d*)");
                                                                                                                 ^
geometrywidget.h:55:117: warning: non-static data member initializers only available with -std=c++11 or -std=gnu++11 [enabled by default]
     const QRegularExpression cornerDimensionAlternate = QRegularExpression("(\\d*)x(\\d*)[+]?(-?\\d+)?[+]?(-?\\d+)?");
                                                                                                                     ^
g++ -c -m64 -pipe -O2 -Wall -W -D_REENTRANT -fPIE -DGIT_VERSION=\"0.6.1.3.dbb87a7\" -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++-64 -I. -isystem /usr/include/x86_64-linux-gnu/qt5 -isystem /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -I. -I. -o configdialog.o configdialog.cpp
/usr/lib/x86_64-linux-gnu/qt5/bin/rcc -name minetestmappergui minetestmappergui.qrc -o qrc_minetestmappergui.cpp
g++ -c -m64 -pipe -O2 -Wall -W -D_REENTRANT -fPIE -DGIT_VERSION=\"0.6.1.3.dbb87a7\" -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++-64 -I. -isystem /usr/include/x86_64-linux-gnu/qt5 -isystem /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -I. -I. -o qrc_minetestmappergui.o qrc_minetestmappergui.cpp
/usr/lib/x86_64-linux-gnu/qt5/bin/moc -DGIT_VERSION=\"0.6.1.3.dbb87a7\" -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++-64 -I/home/gael/Github/minetestmappergui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include mainwindow.h -o moc_mainwindow.cpp
g++ -c -m64 -pipe -O2 -Wall -W -D_REENTRANT -fPIE -DGIT_VERSION=\"0.6.1.3.dbb87a7\" -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++-64 -I. -isystem /usr/include/x86_64-linux-gnu/qt5 -isystem /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -I. -I. -o moc_mainwindow.o moc_mainwindow.cpp
/usr/lib/x86_64-linux-gnu/qt5/bin/moc -DGIT_VERSION=\"0.6.1.3.dbb87a7\" -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++-64 -I/home/gael/Github/minetestmappergui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include colorlineedit.h -o moc_colorlineedit.cpp
g++ -c -m64 -pipe -O2 -Wall -W -D_REENTRANT -fPIE -DGIT_VERSION=\"0.6.1.3.dbb87a7\" -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++-64 -I. -isystem /usr/include/x86_64-linux-gnu/qt5 -isystem /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -I. -I. -o moc_colorlineedit.o moc_colorlineedit.cpp
/usr/lib/x86_64-linux-gnu/qt5/bin/moc -DGIT_VERSION=\"0.6.1.3.dbb87a7\" -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++-64 -I/home/gael/Github/minetestmappergui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include geometrywidget.h -o moc_geometrywidget.cpp
g++ -c -m64 -pipe -O2 -Wall -W -D_REENTRANT -fPIE -DGIT_VERSION=\"0.6.1.3.dbb87a7\" -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++-64 -I. -isystem /usr/include/x86_64-linux-gnu/qt5 -isystem /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -I. -I. -o moc_geometrywidget.o moc_geometrywidget.cpp
In file included from moc_geometrywidget.cpp:9:0:
geometrywidget.h:52:96: warning: non-static data member initializers only available with -std=c++11 or -std=gnu++11 [enabled by default]
     const QRegularExpression corners = QRegularExpression("(-?\\d*),(-?\\d*):(-?\\d*),(-?\\d*)");
                                                                                                ^
geometrywidget.h:53:104: warning: non-static data member initializers only available with -std=c++11 or -std=gnu++11 [enabled by default]
     const QRegularExpression centerDimension = QRegularExpression("(-?\\d*),(-?\\d*):(-?\\d*)x(-?\\d*)");
                                                                                                        ^
geometrywidget.h:54:113: warning: non-static data member initializers only available with -std=c++11 or -std=gnu++11 [enabled by default]
     const QRegularExpression cornerDimension = QRegularExpression("(-?\\d*)[,:](-?\\d*)[+-](-?\\d*)[+-](-?\\d*)");
                                                                                                                 ^
geometrywidget.h:55:117: warning: non-static data member initializers only available with -std=c++11 or -std=gnu++11 [enabled by default]
     const QRegularExpression cornerDimensionAlternate = QRegularExpression("(\\d*)x(\\d*)[+]?(-?\\d+)?[+]?(-?\\d+)?");
                                                                                                                     ^
/usr/lib/x86_64-linux-gnu/qt5/bin/moc -DGIT_VERSION=\"0.6.1.3.dbb87a7\" -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++-64 -I/home/gael/Github/minetestmappergui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include configdialog.h -o moc_configdialog.cpp
g++ -c -m64 -pipe -O2 -Wall -W -D_REENTRANT -fPIE -DGIT_VERSION=\"0.6.1.3.dbb87a7\" -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++-64 -I. -isystem /usr/include/x86_64-linux-gnu/qt5 -isystem /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -I. -I. -o moc_configdialog.o moc_configdialog.cpp
g++ -m64 -Wl,-O1 -o MinetestMapperGui main.o mainwindow.o colorlineedit.o geometrywidget.o configdialog.o qrc_minetestmappergui.o moc_mainwindow.o moc_colorlineedit.o moc_geometrywidget.o moc_configdialog.o   -L/usr/X11R6/lib64 -lQt5Widgets -L/usr/lib/x86_64-linux-gnu -lQt5Gui -lQt5Core -lGL -lpthread 
So I don't understand why it can't compile on my other computer, but I suppose I can transfer the executable to this computer.
Just realize how bored we would be if the world was perfect.

Post Reply

Who is online

Users browsing this forum: No registered users and 4 guests