Howto:Build FlightGear with NetBeans using CMake: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
mNo edit summary
Line 38: Line 38:


Next, you should set up project dependencies.
Next, you should set up project dependencies.
= Disable code indexing =
By default, NetBeans will keep on trying and index all your sources, this may slow down the IDE considerably, so it's a good idea to disable this feature if you don't need it (CONTEXT MENU/RIGHT CLICK on project, go to CODE ASSISTANCE and then uncheck the marked entry).


= Setting up the Jenkins build server =
= Setting up the Jenkins build server =

Revision as of 13:47, 19 October 2011

This article is a stub. You can help the wiki by expanding it.
  • Last updated: 10/2011
  • Author/s: Hooray
  • Status: WIP (as of 10/2011)


Download and install NetBeans 7.0.1

Go to http://netbeans.org/downloads/ in order to download the latest version of NetBeans for your OS/platform.

You can either choose the full download (~200 MB) or just the C/C++ bundle which is about 50 MB.

After downloading NetBeans, you'll need to install it

Installing required modules (plugins)

Using the plugin installer, you need to install the following plugins

  • cvs
  • svn (subversion)
  • git

Checking out the required dependencies

You will need to check out the repositories for the following dependencies:

  • Boost
  • OpenAL
  • OpenSceneGraph (OSG)
  • PLIB
  • SimGear
  • FlightGear

After checking out the repositories, you'll want to use the NetBeans project wizard to CREATE A NEW PROJECT FROM EXISTING SOURCES for each dependency.

For CMake-based projects, you'll want to point NetBeans to the CMakeLists.txt file instead of the configure script.

Next, you should set up project dependencies.

Disable code indexing

By default, NetBeans will keep on trying and index all your sources, this may slow down the IDE considerably, so it's a good idea to disable this feature if you don't need it (CONTEXT MENU/RIGHT CLICK on project, go to CODE ASSISTANCE and then uncheck the marked entry).

Setting up the Jenkins build server

Setting up remote development