Hey gang,
In order to tie FlightGear into another device on our LAN, I need to make a one line change in the source and recompile (need to fudge the Input/Ouput > NMEA option to use AGL altitude instead of AMSL altitude).
In past months I eventually got this compiled in Linux (which looked easier, and was good enough when the destination machine was under my control), I am now trying the same in Windows (for a colleague that needs the same change, but is not running on a Linux box nor a box under my control).
I have thoroughly read:
[1] http://wiki.flightgear.org/Building_FlightGear
[2] http://wiki.flightgear.org/Building_Fli ... _-_Windows
[3] http://wiki.flightgear.org/Building_usi ... _-_Windows
[4] http://wiki.flightgear.org/Howto:_Build ... sing_CMake
[5] viewtopic.php?f=45&t=13852
I am new to MinGW as a compiler suite and to MSYS as a unix-y utilities suite (mostly a Linux boy), and new to NetBeans as an IDE (mostly an Eclipse boy), but I have gotten them installed and can compile the NetBeans Welcome sample project (so I know my compile-related paths are okay), and can run the resulting .exe (so I know my run-time related paths are okay).
My first stumbling block is, I download and unzip boost_1_49_0.7z, and in NetBeans, I do New Project, I choose "C/C++ Project with Existing Sources" as stated in [4], and I click Next. It asks me for the folder that contains existing sources, I point it to the unzipped boost folder. However the Next button is greyed out and it says "No make files or configure script were found in folder ________". The boost project appears to be using a Perforce JAM based make system.
If I change the configuration mode from Automatic to Custom, I can click Next, but the error on that screen is "No makefile specified". From there I can either leave "Using an existing makefile" radio button selected but using that Browse button I can find no makefile within the boost folders. Or conversely I can use the "Using the makefile generated by the configure script" radio button, but then with that Browse button I can find no configure script. As a hack, I can at least point that at the "bootstrap.bat" because at least it is an executable file, and it will allow me to finish the New Project screens (clicking Next, accepting defaults for all remaining screens), but clearly this is not correct.
Can anyone see what I'm doing wrong?