Translations:Konversation/Sources/26/da: Difference between revisions

From KDE UserBase Wiki
(Importing a new version from external source)
 
No edit summary
 
Line 3: Line 3:
  mkdir build
  mkdir build
  cd build
  cd build
  cmake -DCMAKE_BUILD_TYPE=debugfull ..
  cmake -DCMAKE_BUILD_TYPE=debug -DCMAKE_INSTALL_PREFIX=<desired install location> ../
  make
  make
  sudo make install
  sudo make install
</syntaxhighlight>}}
</syntaxhighlight>}}

Latest revision as of 11:19, 21 December 2014

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 (Konversation/Sources)
{{Input|1=<syntaxhighlight lang="bash">
 cd konversation
 mkdir build
 cd build
 cmake -DCMAKE_BUILD_TYPE=debug -DCMAKE_INSTALL_PREFIX=<desired install location> ../
 make
 sudo make install
</syntaxhighlight>}}
 cd konversation
 mkdir build
 cd build
 cmake -DCMAKE_BUILD_TYPE=debug -DCMAKE_INSTALL_PREFIX=<desired install location> ../
 make
 sudo make install