Archive for March, 2008

CMake and Microsoft Visual C++ 2005 Express

March 29th, 2008 | Category: Hubris

This is just a reminder to myself and maybe others as well of how to get CMake and Visual C++ 2005 Express playing together nicely. Namely, how to get past the following error when trying initialize a project using CMake:

  LINK : fatal error LNK1104: cannot open file 'user32.lib'

The problem is that you’re missing the Windows Platform SDK. But just installing it is not enough. Microsoft has the details, but in short you have to:

  1. Install the Platform SDK.
  2. In VC++, add the following paths to the Tools | Options | Projects and Solutions | VC++ Directories page. Be sure to click the checkmark button to verify the paths.
    • Executable files: C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Bin
    • Include files: C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Include
    • Library files: C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Lib

With that, the linker error should go away.

2 comments

Flying the Beaver DHC-2

March 18th, 2008 | Category: RC

Here’s a video of the Beaver DHC-2 RC plane we built in flight.

Read more

No comments

Building a Beaver DHC-2 RC plane

March 09th, 2008 | Category: RC

Here are some pictures from the construction of a Beaver DHC-2 radio-controlled airplane. The plane is made from a type of insulation foam called depron, which is light, durable and a particularly unattractive shade of gray. It took us three days to build the plane, and hopefully with the right kind of weather, we might also actually get to fly it soon.

1 comment