Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
C++ Application Development with Code::Blocks

You're reading from   C++ Application Development with Code::Blocks Using Code::Blocks it's possible for C++ developers to create application consistency across multiple platforms. This book takes you through the process from installation to implementing advanced features, all with a user-friendly approach.

Arrow left icon
Product type Paperback
Published in Oct 2013
Publisher
ISBN-13 9781783283415
Length 128 pages
Edition Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
BIPLAB MODAK BIPLAB MODAK
Author Profile Icon BIPLAB MODAK
BIPLAB MODAK
Arrow right icon
View More author details
Toc

Use of external tools for a project


Code::Blocks allows user to use external tools for any project. Imagine we want to use doxygen tool to generate documentation without using the DoxyBlocks plugin. We can add doxygen as an external tool and then use it on demand.

  1. Go to Tools | Configure tools… menu option to add a new tool. The following window will be opened:

  2. Click on the Add button to add a new tool. The following window will be opened:

  3. Enter following details:

    • Set Name property to doxygen. This value will be used to create a new menu item under Tools menu

    • Set Executable property to C:\Program Files\doxygen\bin\doxygen.exe

    • Set Parameters property to ${PROJECT_DIR}doxygen\doxyfile

    • Set Working directory property to ${PROJECT_DIR}doxygen\

  4. Click on the OK button to close this window and then click on the OK button to close User-defined tools window. A menu item will be created under Tools menu option.

  5. Navigate to Tools | doxygen menu option and the doxygen tool will be launched inside a console window. Press any key to close this console window when it has completed.

We can use any other tool in a similar manner.

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image