Re: [QBS] Can't build QtCreator 3.5 HEAD using Qbs

2015-08-04 Thread Yuchen Deng
2015-08-03 15:53 GMT+08:00 Nikolai Kosjar : > We require llvm/clang 3.6 these days. I see, thx! -- Best Regards Yuchen ___ QBS mailing list QBS@qt-project.org http://lists.qt-project.org/mailman/listinfo/qbs

[QBS] Can't build QtCreator 3.5 HEAD using Qbs

2015-07-31 Thread Yuchen Deng
> > Building: ## 21%ERROR: /usr/bin/g++ -m64 -O2 -Wall -Wextra -pipe >> -fvisibility=hidden -fvisibility-inlines-hidden -fPIC -DNDEBUG -DQT_CREATOR >> '-DIDE_LIBRARY_BASENAME="lib"' -DQT_NO_CAST_TO_ASCII >> -DQT_NO_CAST_FROM_ASCII -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_NO_DEBUG >> -I/home/load

[QBS] `qbs run` can't get correct PATH variable from the ENV

2015-05-02 Thread Yuchen Deng
Please have a look: https://bugreports.qt.io/browse/QBS-787 We should: > Administrator@RL-20150119BRZP /D/qpSOFT/Projects/Qbs (1.4) > > $ git revert c224c80553586749c4942b6cfad5b1dcb4fc6cf0 > > [1.4 157ca23] Revert "Set environment variables for run environments of >> Windows > > and Linux." > >

Re: [QBS] Qbs 1.4.0 is now available in MacPorts and Homebrew

2015-04-28 Thread Yuchen Deng
Great! thanks for you did! 2015-04-28 13:14 GMT+08:00 Jake Petroules : > MacPorts and Homebrew users, > > The latest version of Qbs (1.4.0) is now available in both MacPorts and > Homebrew! I'll be keeping it up to date as well, quickly following each > release of Qbs by the Qt Project. > > MacPo

Re: [QBS] Failure to build qbs self? qbs master branch.

2015-02-02 Thread Yuchen Deng
It's fixed by keep all *.prl files on myself Qt5 builds. Another question: why qbs need *.prl files? It's only for support static Qt builds? 2015-02-02 22:07 GMT+08:00 Christian Kandeler < christian.kande...@theqtcompany.com>: > On 01/23/2015 01:19 PM, Yuchen Deng wro

Re: [QBS] Failure to build qbs self? qbs master branch.

2015-01-23 Thread Yuchen Deng
1-23 20:19 GMT+08:00 Yuchen Deng : > linking HelloWorld-minimal.exe >> linking qbs_qt_scanner.dll >> qhelpgenerator qbs.qhp >> ERROR: D:\qpSOFT\MyDEV\bin\amd64\link.exe /nologo /DLL >> /IMPLIB:D:\qpSOFT\Projects\BuildQbs\qt64-release\lib\qbs\plugins\qbs_qt_sca

[QBS] Failure to build qbs self? qbs master branch.

2015-01-23 Thread Yuchen Deng
> > linking HelloWorld-minimal.exe > linking qbs_qt_scanner.dll > qhelpgenerator qbs.qhp > ERROR: D:\qpSOFT\MyDEV\bin\amd64\link.exe /nologo /DLL > /IMPLIB:D:\qpSOFT\Projects\BuildQbs\qt64-release\lib\qbs\plugins\qbs_qt_scanner.lib > /INCREMENTA > L:NO /OSVERSION:5.02 /SUBSYSTEM:CONSOLE,5.02 > D:\q

Re: [QBS] error: Property 'cxxLanguageVersion' is not declared.

2015-01-20 Thread Yuchen Deng
2015-01-20 17:30 GMT+08:00 Christian Kandeler < christian.kande...@theqtcompany.com>: > This property is new in 1.4. You are most likely using qbs 1.3 to build > your project. > Thanks! that is the reason. -- Best Regards Yuchen ___ QBS mailing list

[QBS] error: Property 'cxxLanguageVersion' is not declared.

2015-01-20 Thread Yuchen Deng
import qbs CppApplication { name: "Test" cpp.cxxLanguageVersion: "c++11" files: "Main.cpp" } hi, Could some one tell me why this simple app can't support c++11 flags? I've read the docs, but can't find why. cxxLanguageVersion *Type:*string*Default:*undefined*Allowed Values:*"c

Re: [QBS] Change in qt-labs/qbs[master]: Make toolchain version in Android NDK flexible.

2015-01-13 Thread Yuchen Deng
gt; There's no Qt support yet for Android. Also, Android profiles are laid out > in a particular way -- namely a base Android profile, with additional > profiles suffixed with _ that contain the properties for each > supported Android ABI. > > Unless you know specifically what you are do

Re: [QBS] Android support in Qbs

2015-01-11 Thread Yuchen Deng
hi, I have a try today, and with some different errors. > loaden@qpsoft:~/qpSOFT/Projects/Qbs/examples/helloworld-qt$ qbs > profile:android-qt5 > Restoring build graph from disk > Building for configuration android-qt5-debug > compiling main.cpp > ERROR: > /opt/android-ndk/toolchains/arm-linux-and

Re: [QBS] qbs 1.3.2 released

2014-10-14 Thread Yuchen Deng
Does any news to support Android deployment? thx! 2014-10-15 0:28 GMT+08:00 Christian Kandeler : > Hi, > > we have released qbs 1.3.2 today. It fixes a number of bugs in the > previous release and is also part of Qt Creator 3.2.2. > The usual packages can be downloaded from > http://download.qt-p

Re: [QBS] Get property from parent project

2014-05-22 Thread Yuchen Deng
I can reproduce this issue in many case. it's often happen. 2014-05-22 22:41 GMT+08:00 Christian Kandeler : > > About the prefix usage, I think this is not a bug in qbs. In fact, i'm > > working with qbs plugin in qcreator and have noticed that often, > > modifications in qbs files are not taken

Re: [QBS] qbs 1.2.0 released

2014-05-05 Thread Yuchen Deng
sounds great! does any plan to support Android in 1.3? 2014-05-06 0:22 GMT+08:00 Christian Kandeler : > Hi, > > we have a new feature release of qbs. More information, including links > to documentation and packages, is available at > http://blog.qt.digia.com/blog/2014/05/05/qbs-1-2-0-released/.

Re: [QBS] How to targeting xp with MSVC2013?

2014-04-17 Thread Yuchen Deng
2014-04-16 23:54 GMT+08:00 Jake Petroules : > all you should need to do is set cpp.minimumWindowsVersion: "5.1" (or > "5.2" for 64-bit WinXP) in your product(s). It's works. Thank you! -- Best Regards Yuchen ___ QBS mailing list QBS@qt-project.org h

[QBS] How to targeting xp with MSVC2013?

2014-04-16 Thread Yuchen Deng
hi, list! After this change: https://codereview.qt-project.org/#change,72935 we can targeting xp using qmake now. it's cool! but I don't know does qbs support targeting xp too? If it doesn't, how to hack? thanks! -- Best Regards Yuchen ___ QBS mailing l

Re: [QBS] linking libqbscore.so.1.1.0 linking libQbsProjectManager.so.1.1.0

2013-11-07 Thread Yuchen Deng
/11/8 Christian Kandeler > On 11/07/2013 03:40 PM, Yuchen Deng wrote: > > Why QbsProjectManager.so have a version suffix? > > 3.0 branch. > > It broken the Qbs build system for 3.0 branch (latest HEAD). > > Please make sure you are compiling with qbs 1.1. The master bran

[QBS] linking libqbscore.so.1.1.0 linking libQbsProjectManager.so.1.1.0

2013-11-07 Thread Yuchen Deng
Why QbsProjectManager.so have a version suffix? 3.0 branch. It broken the Qbs build system for 3.0 branch (latest HEAD). -- Best Regards Yuchen ___ QBS mailing list QBS@qt-project.org http://lists.qt-project.org/mailman/listinfo/qbs

Re: [QBS] MSVC2013 support?

2013-10-20 Thread Yuchen Deng
?id=918158 2013/10/20 Yuchen Deng > hi, there! > For support msvc2013, we need a new compile option `/FS` . > so, any plan to add this option for msvc2013 special? > > -- > Best Regards > Yuchen > -- Best Regards Yuchen ___ Q

[QBS] MSVC2013 support?

2013-10-20 Thread Yuchen Deng
hi, there! For support msvc2013, we need a new compile option `/FS` . so, any plan to add this option for msvc2013 special? -- Best Regards Yuchen ___ QBS mailing list QBS@qt-project.org http://lists.qt-project.org/mailman/listinfo/qbs