Re: [Interest] (no subject)

2020-10-08 Thread Liang Jian
Each time before building Qt I will run the following command:
git clean -dfx
git submodule foreach --recursive 'git clean -dfx'

I think that will clean any make files or cached files.
Anyway, when I build qt the second try, the build succeeded. I don't
know why.
Thank you for the reply!

On Thu, Oct 8, 2020 at 4:11 PM Kai Köhne  wrote:

> > I build qt 5.15 (latest from git) under windows 10 with msvc 2019 with
> the following commands:
> > configure -developer-build -opensource -confirm-license -opengl desktop
> -no-feature-accessibility -mp -nomake examples -
> > nomake tests -skip qt3d -skip qtwebengine
> >nmake
> >
> >Build failed with the following error message:
> >
> > NMAKE : fatal error U1073: don't know how to make
> 'D:\qt5\qtbase\include\QtGui\5.15.0\QtGui\private\qcssparser_p.h'
> > Stop.
> > [...]
> >The
> file D:\qt5\qtbase\include\QtGui\5.15.0\QtGui\private\qcssparser_p.h
> doesn't exist, instead the file
> D:\qt5\qtbase\include\QtGui\5.15.2\QtGui\private\qcssparser_p.h exist
>
> This sounds like you have a tainted build directory. Just delete all
> artifacts and start from scratch.
>
> Kai
>
>
___
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest


Re: [Interest] (no subject)

2020-10-08 Thread Kai Köhne
> I build qt 5.15 (latest from git) under windows 10 with msvc 2019 with the 
> following commands:
> configure -developer-build -opensource -confirm-license -opengl desktop 
> -no-feature-accessibility -mp -nomake examples -
> nomake tests -skip qt3d -skip qtwebengine
>    nmake
>
>    Build failed with the following error message:
>
> NMAKE : fatal error U1073: don't know how to make 
> 'D:\qt5\qtbase\include\QtGui\5.15.0\QtGui\private\qcssparser_p.h'
> Stop.
> [...]
>    The file D:\qt5\qtbase\include\QtGui\5.15.0\QtGui\private\qcssparser_p.h 
>doesn't exist, instead the file 
>D:\qt5\qtbase\include\QtGui\5.15.2\QtGui\private\qcssparser_p.h exist

This sounds like you have a tainted build directory. Just delete all artifacts 
and start from scratch.

Kai

___
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest


Re: [Interest] (no subject)

2020-07-28 Thread Thiago Macieira
On Tuesday, 28 July 2020 06:51:46 PDT David Villalobos Cambronero wrote:
> QString queryToExecute("SELECT 'Día'");
> mysql_real_query(dbConnection, queryToExecute.toUtf8().data(),
> queryToExecute.toUtf8().length());
> 
> And it works just fine on Linux and Linux, but in Windows the í char is not
> sent the correct way, I mean, the Database Server does not receive and í.

In addition to Rainer's question, please confirm that mysql_real_query expects 
UTF-8-encoded input.

-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel DPG Cloud Engineering



___
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest


Re: [Interest] (no subject)

2020-07-28 Thread Rainer Wiesenfarth
On Tue, Jul 28, 2020 at 3:53 PM David Villalobos Cambronero <
david.villalobo...@gmail.com> wrote:

> In my program I have this line:
>
> QString queryToExecute("SELECT 'Día'");
> mysql_real_query(dbConnection, queryToExecute.toUtf8().data(), 
> queryToExecute.toUtf8().length());
>
> And it works just fine on Linux and Linux, but in Windows the í char is
> not sent the correct way, I mean, the Database Server does not receive and
> í.
>
Just a guess: Does your Windows source code editor use UTF-8 encoding? If
not, this might be a cause.


> [...]
>
-- 
Software Engineer | Trimble Imaging Division
Rotebühlstraße 81 | 70178 Stuttgart | Germany
Office +49 711 22881 0 | Fax +49 711 22881 11
http://www.trimble.com/imaging/ | http://www.inpho.de/

Trimble Germany GmbH, Am Prime Parc 11, 65479 Raunheim
Eingetragen beim Amtsgericht Darmstadt unter HRB 83893,
Geschäftsführer: Rob Reeder, Jürgen Kesper
___
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest


Re: [Interest] (no subject)

2020-05-07 Thread Thiago Macieira
On Thursday, 7 May 2020 20:28:16 PDT Selastin George wrote:
> How to run a qtwayland compositor without the support of any platform by
> using DRM or anything like that?
> 
> like weston launches from tty terminal.
> 
> If I use --platform eglfs. It's affecting my compositor perfomance.

Please explain how you want the compositor to display something on the screen. 
Weston uses DRM/GBM.

-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel System Software Products



___
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest


Re: [Interest] (no subject)

2016-12-12 Thread Mitch Curtis
What happens if you run make in qtdeclarative? It looks like Qt Quick failed to 
build.

(The Hunspell message can be ignored, unless you want spell correction)

> -Original Message-
> From: Interest [mailto:interest-bounces+mitch.curtis=qt...@qt-project.org]
> On Behalf Of Jason H
> Sent: Monday, 12 December 2016 4:12 AM
> To: interestqt-project.org 
> Subject: [Interest] (no subject)
> 
> In compiling qt for a Pi zero (natively), I got:
> 
> cd virtualkeyboard/ && ( test -e Makefile || /home/pi/qt-everywhere-
> opensource-src-5.7.0/qtbase/bin/qmake /home/pi/qt-everywhere-
> opensource-src-
> 5.7.0/qtvirtualkeyboard/src/virtualkeyboard/virtualkeyboard.pro -qtconf
> /home/pi/qt-everywhere-opensource-src-5.7.0/qtbase/bin/qt.conf -o
> Makefile ) && make -f Makefile Project MESSAGE: Hunspell not found! Spell
> correction will not be available.
> Project ERROR: Unknown module(s) in QT: quick
> Makefile:44: recipe for target 'sub-virtualkeyboard-make_first' failed
> make[2]: [sub-virtualkeyboard-make_first]
> 
> ___
> Interest mailing list
> Interest@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/interest
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] (no subject)

2016-08-22 Thread Jason H
Kapil, you have sent multiple messages with no subject line. Please use a subject line. 
 

Sent: Monday, August 22, 2016 at 2:26 AM
From: "Kapil Gupta" 
To: interest@qt-project.org
Subject: [Interest] (no subject)



Hi,
 
I am using qml-material to create the GUI for my application. I am trying to use the Bible project mentioned in the qml-material project as the basis for my GUI. I am having this error :
```
QQmlApplicationEngine failed to load component

qrc:/main.qml:3 module "Material.ListItems" is not installed

```

I tried what was mentioned here: http://stackoverflow.com/questions/31726321/load-qmldir-from-qrc-file. It didnt remove the error. Here is my project : https://github.com/daemonSlayer/deep-learning. In order to run the project, the qml-material will have to be downloaded into vendor/material using this command:

git submodule add g...@github.com:papyros/qml-material.git material.


___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest



___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest