Translations:Development/Tutorials/First program/30/nl: Difference between revisions

From KDE TechBase
(Created page with "Je kunt CMake en make handmatig aanroepen: <syntaxhighlight lang="bash"> cmake . && make && make install </syntaxhighlight> Of je kunt &mash; als je systeem is opgezet zoals b...")
(No difference)

Revision as of 09:09, 9 September 2012

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Development/Tutorials/First program)
While you can run '''CMake''' directly inside the source code directory itself, it is a best practice, and actually enforced in some KDE software, to use a separate build directory and run '''CMake''' from there:

Je kunt CMake en make handmatig aanroepen:

cmake . && make && make install

Of je kunt &mash; als je systeem is opgezet zoals beschreven in Getting_Started/Build/Environment &mash; de code compileren met:

cmakekde