Languages/zh-cn: Difference between revisions

From KDE TechBase
(Created page with "==Qt3/KDE3的支持==")
(Created page with "==编译当前 git master==")
Line 38: Line 38:
* [[Development/Languages/Tools|KDE interaction tools]] (Shell)
* [[Development/Languages/Tools|KDE interaction tools]] (Shell)


==Building current git master==
==编译当前 git master==


It is recommended to have the following in ~/.gitconfig:
It is recommended to have the following in ~/.gitconfig:

Revision as of 07:06, 4 August 2012


KDE支持多种的编程语言用于KDE 4的开发。

稳定的和成熟的

以下这些语言的支持已经是成熟的,并且被充分地维护,完全适用于应用程序的开发:

正在开发中的

以下这些语言的支持依然正在开发中:

语言绑定技术与内嵌语言

  • Smoke - 为用于创建诸如Ruby、C#和PHP之类的多语言绑定提供基础。
  • Kross - 为C++应用程序提供内嵌脚本。多语言,诸如Python、Ruby、JavaScript、QtScript、Falcon和Java已经被支持。
  • SIP - 用于产生Python绑定。

Qt3/KDE3的支持

编译当前 git master

It is recommended to have the following in ~/.gitconfig:

[url "git://anongit.kde.org/"]
    insteadOf = kde:
[url "ssh://[email protected]/"]
    pushInsteadOf = kde:

to pull from the anongit servers, but push to the main git server.

Clone the repositories with

git clone kde:smokegen
git clone kde:smokeqt
git clone kde:smokekde
git clone kde:qtruby
git clone kde:korundum
git clone kde:qyoto
git clone kde:kimono
git clone kde:perlqt
git clone kde:perlkde
git clone kde:kross-interpreters

Building happens as usual with

cmake <src-dir> -DCMAKE_INSTALL_PREFIX=/usr
make
make install

Smokegen has to be built first, then smokeqt and smokekde. After that you can then build the various language bindings. Note that the KDE bindings part always depends on the Qt part - so you have to build this one first.

kross-interpreters contains the language plugins for kross. They do not depend on any of the above.