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 edit summary
     
    Line 3: Line 3:
    cmake . && make && make install
    cmake . && make && make install
    </syntaxhighlight>
    </syntaxhighlight>
    Of je kunt &mash; als je systeem is opgezet zoals beschreven in [[Getting_Started/Build/Environment]] &mash; de code compileren met:
    Of je kunt &mdash; als je systeem is opgezet zoals beschreven in [[Getting_Started/Build/Environment]] &mdash; de code compileren met:
    <syntaxhighlight lang="bash">
    <syntaxhighlight lang="bash">
    cmakekde
    cmakekde
    </syntaxhighlight>
    </syntaxhighlight>

    Latest revision as of 09:11, 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 — als je systeem is opgezet zoals beschreven in Getting_Started/Build/Environment — de code compileren met:

    cmakekde