Archive for March, 2008
CMake and Microsoft Visual C++ 2005 Express
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:
- Install the Platform SDK.
- 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 commentsBuilding a Beaver DHC-2 RC plane
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
