diff -ur -x *.dll -x *.exe -x *.suo -x *.obj -x *.ncb -x *.pdb -x *.idb -x *.ilk -x *.pch -x *.lib -x *.dep -x *.mak -x *.opt -x *.plg -x Debug -x Release c:\FGCVS\SimGear\source\simgear\math\fastmath.hxx SimGear\source\simgear\math\fastmath.hxx --- c:\FGCVS\SimGear\source\simgear\math\fastmath.hxx Thu Mar 09 17:06:41 2006 +++ SimGear\source\simgear\math\fastmath.hxx Mon Apr 10 16:25:00 2006 @@ -26,7 +26,9 @@ #endif #include - +#ifndef M_LN2 // a MSVC6 version problem +#define M_LN2 0.693147180559945309417 +#endif // #ifndef M_LN2 // a MSVC6 version problem double fast_exp(double val); double fast_exp2(const double val); diff -ur -x *.dll -x *.exe -x *.suo -x *.obj -x *.ncb -x *.pdb -x *.idb -x *.ilk -x *.pch -x *.lib -x *.dep -x *.mak -x *.opt -x *.plg -x Debug -x Release c:\FGCVS\SimGear\source\simgear\math\SGQuat.hxx SimGear\source\simgear\math\SGQuat.hxx --- c:\FGCVS\SimGear\source\simgear\math\SGQuat.hxx Thu Mar 09 17:06:40 2006 +++ SimGear\source\simgear\math\SGQuat.hxx Thu Apr 13 12:59:54 2006 @@ -280,6 +280,7 @@ SGQuat& operator-=(const SGQuat& v) { _data[0]-=v(0);_data[1]-=v(1);_data[2]-=v(2);_data[3]-=v(3);return *this; } /// Inplace scalar multiplication +#if !defined(_MSC_VER) || (_MSC_VER > 1200) template SGQuat& operator*=(S s) { _data[0] *= s; _data[1] *= s; _data[2] *= s; _data[3] *= s; return *this; } @@ -287,6 +288,8 @@ template SGQuat& operator/=(S s) { return operator*=(1/T(s)); } +#endif // #if !defined(_MSC_VER) || (_MSC_VER > 1200) + /// Inplace quaternion multiplication SGQuat& operator*=(const SGQuat& v); diff -ur -x *.dll -x *.exe -x *.suo -x *.obj -x *.ncb -x *.pdb -x *.idb -x *.ilk -x *.pch -x *.lib -x *.dep -x *.mak -x *.opt -x *.plg -x Debug -x Release c:\FGCVS\SimGear\source\simgear\misc\stdint.hxx SimGear\source\simgear\misc\stdint.hxx --- c:\FGCVS\SimGear\source\simgear\misc\stdint.hxx Sun Nov 13 11:42:38 2005 +++ SimGear\source\simgear\misc\stdint.hxx Mon Apr 10 16:25:00 2006 @@ -67,8 +67,13 @@ } inline uint64_t sg_bswap_64(uint64_t x) { +#if (_MSC_VER < 1300) // a MSVC6 version problem + x = ((x >> 8) & 0x00FF00FF00FF00FFI64) | ((x << 8) & 0xFF00FF00FF00FF00I64); + x = ((x >> 16) & 0x0000FFFF0000FFFFI64) | ((x << 16) & 0xFFFF0000FFFF0000I64); +#else // later MSVC version x = ((x >> 8) & 0x00FF00FF00FF00FFLL) | ((x << 8) & 0xFF00FF00FF00FF00LL); x = ((x >> 16) & 0x0000FFFF0000FFFFLL) | ((x << 16) & 0xFFFF0000FFFF0000LL); +#endif // a MSVC6 version problem x = (x >> 32) | (x << 32); return x; } diff -ur -x *.dll -x *.exe -x *.suo -x *.obj -x *.ncb -x *.pdb -x *.idb -x *.ilk -x *.pch -x *.lib -x *.dep -x *.mak -x *.opt -x *.plg -x Debug -x Release c:\FGCVS\SimGear\source\simgear\props\props.cxx SimGear\source\simgear\props\props.cxx --- c:\FGCVS\SimGear\source\simgear\props\props.cxx Thu Mar 16 13:38:10 2006 +++ SimGear\source\simgear\props\props.cxx Mon Apr 10 16:46:14 2006 @@ -749,10 +749,11 @@ */ SGPropertyNode::~SGPropertyNode () { + unsigned i; // zero out all parent pointers, else they might be dangling - for (unsigned i = 0; i < _children.size(); ++i) + for ( i = 0; i < _children.size(); ++i) _children[i]->_parent = 0; - for (unsigned i = 0; i < _removedChildren.size(); ++i) + for ( i = 0; i < _removedChildren.size(); ++i) _removedChildren[i]->_parent = 0; delete _path_cache; clearValue(); diff -ur -x *.dll -x *.exe -x *.suo -x *.obj -x *.ncb -x *.pdb -x *.idb -x *.ilk -x *.pch -x *.lib -x *.dep -x *.mak -x *.opt -x *.plg -x Debug -x Release c:\FGCVS\SimGear\source\simgear\scene\material\mat.cxx SimGear\source\simgear\scene\material\mat.cxx --- c:\FGCVS\SimGear\source\simgear\scene\material\mat.cxx Mon Apr 10 12:35:27 2006 +++ SimGear\source\simgear\scene\material\mat.cxx Mon Apr 10 16:59:19 2006 @@ -85,9 +85,10 @@ void SGMaterial::read_properties( const string &fg_root, const SGPropertyNode * props, const char *season ) { - // Gather the path(s) to the texture(s) + unsigned int i; + // Gather the path(s) to the texture(s) vector textures = props->getChildren("texture"); - for (unsigned int i = 0; i < textures.size(); i++) + for ( i = 0; i < textures.size(); i++) { string tname = textures[i]->getStringValue(); string otname = tname; @@ -157,13 +158,13 @@ vector object_group_nodes = ((SGPropertyNode *)props)->getChildren("object-group"); - for (unsigned int i = 0; i < object_group_nodes.size(); i++) + for ( i = 0; i < object_group_nodes.size(); i++) object_groups.push_back(new SGMatModelGroup(object_group_nodes[i])); // handling of glyphs for taxi-/runway-signs xscale = props->getDoubleValue("xscale", 1.0); vector glyph_nodes = props->getChildren("glyph"); - for (unsigned int i = 0; i < glyph_nodes.size(); i++) { + for ( i = 0; i < glyph_nodes.size(); i++) { const char *name = glyph_nodes[i]->getStringValue("name"); if (name) glyphs[name] = new SGMaterialGlyph(glyph_nodes[i]); diff -ur -x *.dll -x *.exe -x *.suo -x *.obj -x *.ncb -x *.pdb -x *.idb -x *.ilk -x *.pch -x *.lib -x *.dep -x *.mak -x *.opt -x *.plg -x Debug -x Release c:\FGCVS\SimGear\source\simgear\scene\material\mat.hxx SimGear\source\simgear\scene\material\mat.hxx --- c:\FGCVS\SimGear\source\simgear\scene\material\mat.hxx Mon Apr 10 12:35:27 2006 +++ SimGear\source\simgear\scene\material\mat.hxx Mon Apr 10 16:57:07 2006 @@ -176,8 +176,9 @@ /** * Return pointer to glyph class, or 0 if it doesn't exist. */ +typedef map SGMG_MAP; virtual SGMaterialGlyph * get_glyph (const string& name) const { - map::const_iterator it = glyphs.find(name); + SGMG_MAP::const_iterator it = glyphs.find(name); return it != glyphs.end() ? it->second : 0; } diff -ur -x *.dll -x *.exe -x *.suo -x *.obj -x *.ncb -x *.pdb -x *.idb -x *.ilk -x *.pch -x *.lib -x *.dep -x *.mak -x *.opt -x *.plg -x Debug -x Release c:\FGCVS\SimGear\source\simgear\scene\model\modellib.cxx SimGear\source\simgear\scene\model\modellib.cxx --- c:\FGCVS\SimGear\source\simgear\scene\model\modellib.cxx Thu Mar 09 17:06:44 2006 +++ SimGear\source\simgear\scene\model\modellib.cxx Mon Apr 10 17:04:51 2006 @@ -13,6 +13,7 @@ #include "modellib.hxx" +typedef map > SSGSP_MAP; //////////////////////////////////////////////////////////////////////// @@ -47,8 +48,7 @@ "WARNGING: a disabled/broken routine has been called. This should be fixed!" ); return; - - map >::iterator it = _table.begin(); + SSGSP_MAP::iterator it = _table.begin(); while (it != _table.end()) { // If there is only one reference, it's // ours; no one else is using the item. @@ -91,7 +91,8 @@ // FIXME: normalize path to // avoid duplicates. - map >::iterator it = _table.find(path); + //map >::iterator it = _table.find(path); + SSGSP_MAP::iterator it = _table.find(path); if (!cache_object || it == _table.end()) { ssgSharedPtr model = sgLoad3DModel(fg_root, path, prop_root, sim_time_sec, 0, data ); diff -ur -x *.dll -x *.exe -x *.suo -x *.obj -x *.ncb -x *.pdb -x *.idb -x *.ilk -x *.pch -x *.lib -x *.dep -x *.mak -x *.opt -x *.plg -x Debug -x Release c:\FGCVS\SimGear\source\simgear\scene\model\personality.cxx SimGear\source\simgear\scene\model\personality.cxx --- c:\FGCVS\SimGear\source\simgear\scene\model\personality.cxx Mon May 10 17:59:02 2004 +++ SimGear\source\simgear\scene\model\personality.cxx Mon Apr 10 17:07:24 2006 @@ -18,7 +18,9 @@ double SGPersonalityBranch::getDoubleValue( SGAnimation *anim, int var_id, int var_num ) const { - map::const_iterator it = _doubleValues.find( Key( anim, var_id, var_num ) ); + typedef map Kd_MAP; + //map::const_iterator it = _doubleValues.find( Key( anim, var_id, var_num ) ); + Kd_MAP::const_iterator it = _doubleValues.find( Key( anim, var_id, var_num ) ); if ( it != _doubleValues.end() ) { return it->second; } else { @@ -28,7 +30,9 @@ int SGPersonalityBranch::getIntValue( SGAnimation *anim, int var_id, int var_num ) const { - map::const_iterator it = _intValues.find( Key( anim, var_id, var_num ) ); + typedef map Ki_MAP; + // map::const_iterator it = _intValues.find( Key( anim, var_id, var_num ) ); + Ki_MAP::const_iterator it = _intValues.find( Key( anim, var_id, var_num ) ); if ( it != _intValues.end() ) { return it->second; } else { diff -ur -x *.dll -x *.exe -x *.suo -x *.obj -x *.ncb -x *.pdb -x *.idb -x *.ilk -x *.pch -x *.lib -x *.dep -x *.mak -x *.opt -x *.plg -x Debug -x Release c:\FGCVS\SimGear\source\simgear\scene\model\shadowvolume.cxx SimGear\source\simgear\scene\model\shadowvolume.cxx --- c:\FGCVS\SimGear\source\simgear\scene\model\shadowvolume.cxx Thu Mar 16 13:38:10 2006 +++ SimGear\source\simgear\scene\model\shadowvolume.cxx Thu Apr 13 15:16:36 2006 @@ -581,7 +581,7 @@ if ( cull_result == SSG_OUTSIDE ) return ; if( b->isA( ssgTypeTransform() ) ) { - +#if !defined(_MSC_VER) || (_MSC_VER > 1200) SceneryObject_map::iterator iSceneryObject = sceneryObjects.find( b ); if( iSceneryObject != sceneryObjects.end() ) { SceneryObject *an_occluder = iSceneryObject->second; @@ -601,6 +601,7 @@ for ( ssgEntity *e = b->getKid ( 0 ) ; e != NULL ; e = b->getNextKid() ) cull ( (ssgBranch *) e, f, tmp, cull_result != SSG_INSIDE ) ; glPopMatrix () ; +#endif // #if !defined(_MSC_VER) || (_MSC_VER > 1200) } else if( b->isAKindOf( ssgTypeSelector() ) ) { int s = ((ssgSelector *) b)->getSelect() ; if( b->isA( ssgTypeRangeSelector() ) ) { @@ -909,12 +910,15 @@ while( occluder && !occluder->isA(ssgTypeTransform())) occluder = (ssgBranch *) occluder->getKid(0); +#if !defined(_MSC_VER) || (_MSC_VER > 1200) // check if we allready know this object SceneryObject_map::iterator iSceneryObject = sceneryObjects.find( occluder ); if( iSceneryObject != sceneryObjects.end() ) { delete iSceneryObject->second; sceneryObjects.erase( occluder ); } +#endif // #if !defined(_MSC_VER) || (_MSC_VER > 1200) + } void SGShadowVolume::addOccluder(ssgBranch *occluder, OccluderType occluder_type, ssgBranch *tile) { @@ -922,6 +926,7 @@ while( occluder && !occluder->isA(ssgTypeTransform())) occluder = (ssgBranch *) occluder->getKid(0); +#if !defined(_MSC_VER) || (_MSC_VER > 1200) // check if we allready know this object SceneryObject_map::iterator iSceneryObject = sceneryObjects.find( occluder ); if( iSceneryObject == sceneryObjects.end() ) { @@ -930,6 +935,7 @@ entry->tile = tile; sceneryObjects[ occluder ] = entry; } +#endif // #if !defined(_MSC_VER) || (_MSC_VER > 1200) } diff -ur -x *.dll -x *.exe -x *.suo -x *.obj -x *.ncb -x *.pdb -x *.idb -x *.ilk -x *.pch -x *.lib -x *.dep -x *.mak -x *.opt -x *.plg -x Debug -x Release c:\FGCVS\SimGear\source\simgear\scene\model\shadowvolume.hxx SimGear\source\simgear\scene\model\shadowvolume.hxx --- c:\FGCVS\SimGear\source\simgear\scene\model\shadowvolume.hxx Fri Mar 31 12:07:22 2006 +++ SimGear\source\simgear\scene\model\shadowvolume.hxx Thu Apr 13 14:43:49 2006 @@ -61,7 +61,7 @@ void endOfFrame(void); static int ACpostTravCB( ssgEntity *entity, int traversal_mask ); -private: +// private: class ShadowCaster { @@ -121,26 +121,28 @@ typedef map, SceneryObject *> SceneryObject_map; -private: +// private: void update_light_view(void); void computeShadows(void); void cull ( ssgBranch *b, sgFrustum *f, sgMat4 m, int test_needed ); - bool shadows_enabled; - bool shadowsAC_enabled, shadowsAI_enabled, shadowsTO_enabled, shadowsDebug_enabled; - bool shadowsAC_transp_enabled; - bool use_alpha; bool canDoAlpha, canDoStencil; SGPropertyNode_ptr sim_rendering; - sgVec3 sunPos; - int frameNumber; - int lastTraverseTreeFrame; - sgMat4 CameraViewM; double sun_angle; SceneryObject_map sceneryObjects; ssgSharedPtr ssg_root; bool shadows_rendered; +public: + bool shadows_enabled; + bool shadowsAC_enabled, shadowsAI_enabled, shadowsTO_enabled, shadowsDebug_enabled; + bool shadowsAC_transp_enabled; + int lastTraverseTreeFrame; + sgMat4 CameraViewM; + sgVec3 sunPos; + int frameNumber; + bool use_alpha; + }; #endif // _SHADOWVOLUME_HXX diff -ur -x *.dll -x *.exe -x *.suo -x *.obj -x *.ncb -x *.pdb -x *.idb -x *.ilk -x *.pch -x *.lib -x *.dep -x *.mak -x *.opt -x *.plg -x Debug -x Release c:\FGCVS\SimGear\source\simgear\scene\tgdb\obj.cxx SimGear\source\simgear\scene\tgdb\obj.cxx --- c:\FGCVS\SimGear\source\simgear\scene\tgdb\obj.cxx Thu Mar 09 17:06:47 2006 +++ SimGear\source\simgear\scene\tgdb\obj.cxx Mon Apr 10 17:23:01 2006 @@ -437,7 +437,9 @@ LeafMap::iterator lmi = leafMap.begin(); while ( lmi != leafMap.end() ) { list &leaf_list = lmi->second; - list::iterator li = leaf_list.begin(); + typedef list LEAF_LIST; + //list::iterator li = leaf_list.begin(); + LEAF_LIST::iterator li = leaf_list.begin(); while ( li != leaf_list.end() ) { Leaf &leaf = *li; int ind = leaf.index; diff -ur -x *.dll -x *.exe -x *.suo -x *.obj -x *.ncb -x *.pdb -x *.idb -x *.ilk -x *.pch -x *.lib -x *.dep -x *.mak -x *.opt -x *.plg -x Debug -x Release c:\FGCVS\SimGear\source\simgear\scene\tgdb\vasi.hxx SimGear\source\simgear\scene\tgdb\vasi.hxx --- c:\FGCVS\SimGear\source\simgear\scene\tgdb\vasi.hxx Thu Mar 09 17:06:47 2006 +++ SimGear\source\simgear\scene\tgdb\vasi.hxx Mon Apr 10 17:23:43 2006 @@ -138,6 +138,7 @@ } } else if ( count == 36 ) { // probably vasi, first 18 are downwind bar (2.5 deg) + int i; ref = 2.5; if ( angle_deg < ref - trans ) { color = 0.0; @@ -146,7 +147,7 @@ } else { color = 1.0; } - for ( int i = 0; i < 18; ++i ) { + for ( i = 0; i < 18; ++i ) { entry = leaf->getColour( i ); entry[1] = color; entry[2] = color; @@ -161,7 +162,7 @@ } else { color = 1.0; } - for ( int i = 18; i < 36; ++i ) { + for ( i = 18; i < 36; ++i ) { entry = leaf->getColour( i ); entry[1] = color; entry[2] = color; diff -ur -x *.dll -x *.exe -x *.suo -x *.obj -x *.ncb -x *.pdb -x *.idb -x *.ilk -x *.pch -x *.lib -x *.dep -x *.mak -x *.opt -x *.plg -x Debug -x Release c:\FGCVS\SimGear\source\simgear\screen\texture.hxx SimGear\source\simgear\screen\texture.hxx --- c:\FGCVS\SimGear\source\simgear\screen\texture.hxx Fri Oct 14 19:21:57 2005 +++ SimGear\source\simgear\screen\texture.hxx Mon Apr 10 17:25:21 2006 @@ -24,6 +24,23 @@ * and also query various info and load various file formats */ class SGTexture { +public: + typedef struct _ImageRec { + _ImageRec(void) : tmp(0), rowStart(0), rowSize(0) {} + unsigned short imagic; + unsigned short type; + unsigned short dim; + unsigned short xsize, ysize, zsize; + unsigned int min, max; + unsigned int wasteBytes; + char name[80]; + unsigned long colorMap; + gzFile file; + GLubyte *tmp; + unsigned long rleEnd; + unsigned int *rowStart; + int *rowSize; + } ImageRec; private: @@ -41,22 +58,6 @@ protected: FILE *file; - typedef struct _ImageRec { - _ImageRec(void) : tmp(0), rowStart(0), rowSize(0) {} - unsigned short imagic; - unsigned short type; - unsigned short dim; - unsigned short xsize, ysize, zsize; - unsigned int min, max; - unsigned int wasteBytes; - char name[80]; - unsigned long colorMap; - gzFile file; - GLubyte *tmp; - unsigned long rleEnd; - unsigned int *rowStart; - int *rowSize; - } ImageRec; void ConvertUint(unsigned *array, unsigned int length); void ConvertShort(unsigned short *array, unsigned int length); Only in SimGear\source\simgear: simgear_config.h diff -ur -x *.dll -x *.exe -x *.suo -x *.obj -x *.ncb -x *.pdb -x *.idb -x *.ilk -x *.pch -x *.lib -x *.dep -x *.mak -x *.opt -x *.plg -x Debug -x Release c:\FGCVS\SimGear\source\simgear\sound\xmlsound.cxx SimGear\source\simgear\sound\xmlsound.cxx --- c:\FGCVS\SimGear\source\simgear\sound\xmlsound.cxx Thu Mar 09 17:06:50 2006 +++ SimGear\source\simgear\sound\xmlsound.cxx Mon Apr 10 17:47:43 2006 @@ -129,7 +129,19 @@ float v = 0.0; vector kids = node->getChildren("volume"); for (i = 0; (i < kids.size()) && (i < SGXmlSound::MAXPROP); i++) { +#if (_MSC_VER < 1300) // a MSVC6 version problem + _snd_prop volume; + volume.prop = NULL; + volume.fn = NULL; + volume.intern = NULL; + volume.factor = 1.0; + volume.offset = 0.0; + volume.min = 0.0; + volume.max = 0.0; + volume.subtract = false; +#else // #ifdef (_MSC_VER < 1300) // a MSVC6 version problem _snd_prop volume = {NULL, NULL, NULL, 1.0, 0.0, 0.0, 0.0, false}; +#endif // #ifdef (_MSC_VER < 1300) // a MSVC6 version problem if (strcmp(kids[i]->getStringValue("property"), "")) volume.prop = root->getNode(kids[i]->getStringValue("property", ""), true); @@ -185,7 +197,19 @@ float p = 0.0; kids = node->getChildren("pitch"); for (i = 0; (i < kids.size()) && (i < SGXmlSound::MAXPROP); i++) { +#if (_MSC_VER < 1300) // a MSVC6 version problem + _snd_prop pitch; + pitch.prop = NULL; + pitch.fn = NULL; + pitch.intern = NULL; + pitch.factor = 1.0; + pitch.offset = 1.0; + pitch.min = 0.0; + pitch.max = 0.0; + pitch.subtract = false; +#else // #ifdef (_MSC_VER < 1300) // a MSVC6 version problem _snd_prop pitch = {NULL, NULL, NULL, 1.0, 1.0, 0.0, 0.0, false}; +#endif // #ifdef (_MSC_VER < 1300) // a MSVC6 version problem if (strcmp(kids[i]->getStringValue("property", ""), "")) pitch.prop = root->getNode(kids[i]->getStringValue("property", ""), true); diff -ur -x *.dll -x *.exe -x *.suo -x *.obj -x *.ncb -x *.pdb -x *.idb -x *.ilk -x *.pch -x *.lib -x *.dep -x *.mak -x *.opt -x *.plg -x Debug -x Release c:\FGCVS\SimGear\source\simgear\structure\SGSharedPtr.hxx SimGear\source\simgear\structure\SGSharedPtr.hxx --- c:\FGCVS\SimGear\source\simgear\structure\SGSharedPtr.hxx Thu Mar 09 17:06:50 2006 +++ SimGear\source\simgear\structure\SGSharedPtr.hxx Thu Apr 13 13:59:54 2006 @@ -49,16 +49,20 @@ {} SGSharedPtr(T* ptr) : _ptr(ptr) { get(_ptr); } +#if !defined(_MSC_VER) || (_MSC_VER > 1200) // a MSVC6 version problem SGSharedPtr(const SGSharedPtr& p) : _ptr(p.ptr()) { get(_ptr); } +#endif // #if !defined(_MSC_VER) || (_MSC_VER > 1200) template SGSharedPtr(const SGSharedPtr& p) : _ptr(p.ptr()) { get(_ptr); } ~SGSharedPtr(void) { put(); } +#if !defined(_MSC_VER) || (_MSC_VER > 1200) // a MSVC6 version problem SGSharedPtr& operator=(const SGSharedPtr& p) { assign(p.ptr()); return *this; } +#endif // #if !defined(_MSC_VER) || (_MSC_VER > 1200) template SGSharedPtr& operator=(const SGSharedPtr& p) { assign(p.ptr()); return *this; } diff -ur -x *.dll -x *.exe -x *.suo -x *.obj -x *.ncb -x *.pdb -x *.idb -x *.ilk -x *.pch -x *.lib -x *.dep -x *.mak -x *.opt -x *.plg -x Debug -x Release c:\FGCVS\SimGear\source\simgear\structure\ssgSharedPtr.hxx SimGear\source\simgear\structure\ssgSharedPtr.hxx --- c:\FGCVS\SimGear\source\simgear\structure\ssgSharedPtr.hxx Thu Mar 09 17:06:50 2006 +++ SimGear\source\simgear\structure\ssgSharedPtr.hxx Thu Apr 13 14:46:40 2006 @@ -34,16 +34,25 @@ {} ssgSharedPtr(T* ptr) : _ptr(ptr) { get(_ptr); } +#if !defined(_MSC_VER) || (_MSC_VER > 1200) ssgSharedPtr(const ssgSharedPtr& p) : _ptr(p.ptr()) { get(_ptr); } +#endif // #if !defined(_MSC_VER) || (_MSC_VER > 1200) template ssgSharedPtr(const ssgSharedPtr& p) : _ptr(p.ptr()) { get(_ptr); } ~ssgSharedPtr(void) { put(); } +#if !defined(_MSC_VER) || (_MSC_VER > 1200) // a MSVC6 version problem ssgSharedPtr& operator=(const ssgSharedPtr& p) { assign(p.ptr()); return *this; } +#else // !#if !defined(_MSC_VER) || (_MSC_VER > 1200) // a MSVC6 version problem + //template + //ssgSharedPtr& operator<(const ssgSharedPtr& p) + //ssgSharedPtr& operator<(const ssgSharedPtr& p) + //{ return 0; } +#endif // #if !defined(_MSC_VER) || (_MSC_VER > 1200) // a MSVC6 version problem template ssgSharedPtr& operator=(const ssgSharedPtr& p) { assign(p.ptr()); return *this; } diff -ur -x *.dll -x *.exe -x *.suo -x *.obj -x *.ncb -x *.pdb -x *.idb -x *.ilk -x *.pch -x *.lib -x *.dep -x *.mak -x *.opt -x *.plg -x Debug -x Release c:\FGCVS\SimGear\source\simgear\structure\subsystem_mgr.cxx SimGear\source\simgear\structure\subsystem_mgr.cxx --- c:\FGCVS\SimGear\source\simgear\structure\subsystem_mgr.cxx Wed Feb 22 15:09:32 2006 +++ SimGear\source\simgear\structure\subsystem_mgr.cxx Mon Apr 10 17:49:34 2006 @@ -340,7 +340,9 @@ SGSubsystem * SGSubsystemMgr::get_subsystem (const string &name) { - map::iterator s =_subsystem_map.find(name); + typedef map sSGS_MAP; + // map::iterator s =_subsystem_map.find(name); + sSGS_MAP::iterator s =_subsystem_map.find(name); if (s == _subsystem_map.end()) return 0; diff -ur -x *.dll -x *.exe -x *.suo -x *.obj -x *.ncb -x *.pdb -x *.idb -x *.ilk -x *.pch -x *.lib -x *.dep -x *.mak -x *.opt -x *.plg -x Debug -x Release c:\FGCVS\SimGear\source\SimGear.dsp SimGear\source\SimGear.dsp --- c:\FGCVS\SimGear\source\SimGear.dsp Fri Mar 24 12:32:39 2006 +++ SimGear\source\SimGear.dsp Thu Apr 13 13:33:48 2006 @@ -1,2161 +1,2163 @@ -# Microsoft Developer Studio Project File - Name="SimGear" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=SimGear - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "SimGear.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "SimGear.mak" CFG="SimGear - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "SimGear - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "SimGear - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_MBCS" /FD /c /MT /I "." /I ".." /I ".\SimGear" /I "..\zlib-1.2.3" /I "..\OpenAL 1.0 Software Development Kit\include" /D "_USE_MATH_DEFINES" /D "_CRT_SECURE_NO_DEPRECATE" /D "HAVE_CONFIG_H" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD CPP /nologo /W3 /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_MBCS" /FR /FD /GZ /c /MTd /I "." /I ".." /I ".\SimGear" /I "..\zlib-1.2.3" /I "..\OpenAL 1.0 Software Development Kit\include" /D "_USE_MATH_DEFINES" /D "_CRT_SECURE_NO_DEPRECATE" /D "HAVE_CONFIG_H" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo - -!ENDIF - -# Begin Target - -# Name "SimGear - Win32 Release" -# Name "SimGear - Win32 Debug" -# Begin Group "Lib_sgbucket" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\bucket\newbucket.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgbucket" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgbucket" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgdebug" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\debug\logstream.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgdebug" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgdebug" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgephem" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\ephemeris\celestialBody.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgephem" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgephem" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\ephemeris\ephemeris.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgephem" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgephem" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\ephemeris\jupiter.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgephem" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgephem" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\ephemeris\mars.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgephem" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgephem" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\ephemeris\mercury.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgephem" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgephem" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\ephemeris\moonpos.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgephem" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgephem" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\ephemeris\neptune.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgephem" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgephem" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\ephemeris\pluto.hxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgephem" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgephem" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\ephemeris\saturn.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgephem" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgephem" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\ephemeris\star.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgephem" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgephem" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\ephemeris\stardata.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgephem" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgephem" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\ephemeris\uranus.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgephem" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgephem" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\ephemeris\venus.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgephem" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgephem" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgio" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\io\iochannel.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgio" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgio" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\io\lowlevel.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgio" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgio" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\io\sg_binobj.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgio" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgio" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\io\sg_file.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgio" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgio" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\io\sg_serial.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgio" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgio" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\io\sg_socket.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgio" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgio" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\io\sg_socket_udp.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgio" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgio" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgmagvar" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\magvar\coremag.hxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmagvar" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmagvar" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\magvar\coremag.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmagvar" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmagvar" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\magvar\magvar.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmagvar" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmagvar" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgmath" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\math\interpolater.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmath" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmath" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\math\leastsqs.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmath" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmath" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\math\polar3d.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmath" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmath" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\math\sg_geodesy.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmath" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmath" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\math\sg_random.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmath" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmath" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\math\vector.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmath" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmath" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\math\fastmath.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmath" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmath" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\math\SGGeodesy.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmath" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmath" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgenvironment" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\environment\metar.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgenvironment" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgenvironment" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\environment\visual_enviro.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgenvironment" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgenvironment" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgmisc" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\misc\sg_path.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmisc" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmisc" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\misc\sgstream.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmisc" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmisc" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\misc\strutils.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmisc" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmisc" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\misc\tabbed_values.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmisc" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmisc" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\misc\texcoord.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmisc" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmisc" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\misc\zfstream.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmisc" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmisc" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\misc\interpolator.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmisc" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmisc" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgnasal" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\nasal\code.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\nasal\code.h - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\nasal\codegen.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\nasal\data.h - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\nasal\gc.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\nasal\hash.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\nasal\lex.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\nasal\lib.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\nasal\mathlib.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\nasal\iolib.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\nasal\iolib.h - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\nasal\bitslib.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\nasal\misc.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\nasal\nasal.h - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\nasal\parse.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\nasal\parse.h - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\nasal\string.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\nasal\vector.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\nasal\thread-posix.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\nasal\thread-win32.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgnasal" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgnasal" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgprops" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\props\condition.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgprops" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgprops" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\props\props.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgprops" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgprops" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\props\props_io.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgprops" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgprops" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgroute" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\route\route.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgroute" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgroute" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\route\waypoint.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgroute" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgroute" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgmaterial" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\scene\material\mat.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmaterial" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmaterial" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\material\matlib.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmaterial" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmaterial" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\material\matmodel.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmaterial" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmaterial" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgmodel" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\scene\model\animation.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmodel" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmodel" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\model\custtrans.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmodel" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmodel" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\model\location.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmodel" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmodel" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\model\model.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmodel" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmodel" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\model\modellib.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmodel" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmodel" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\model\personality.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmodel" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmodel" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\model\placement.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmodel" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmodel" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\model\placementtrans.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmodel" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmodel" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\model\shadowvolume.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmodel" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmodel" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\model\shadanim.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgmodel" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgmodel" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgsky" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\scene\sky\cloud.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgsky" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgsky" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\sky\dome.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgsky" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgsky" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\sky\moon.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgsky" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgsky" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\sky\oursun.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgsky" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgsky" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\sky\sky.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgsky" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgsky" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\sky\sphere.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgsky" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgsky" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\sky\stars.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgsky" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgsky" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\sky\bbcache.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgsky" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgsky" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\sky\cloudfield.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgsky" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgsky" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\sky\newcloud.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgsky" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgsky" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgtgdb" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\scene\tgdb\apt_signs.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgtgdb" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgtgdb" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\tgdb\leaf.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgtgdb" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgtgdb" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\tgdb\obj.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgtgdb" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgtgdb" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\tgdb\pt_lights.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgtgdb" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgtgdb" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\scene\tgdb\userdata.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgtgdb" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgtgdb" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgscreen" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\screen\texture.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgscreen" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgscreen" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\screen\GLBitmaps.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgscreen" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgscreen" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\screen\screen-dump.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgscreen" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgscreen" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\screen\tr.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgscreen" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgscreen" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\screen\extensions.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgscreen" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgscreen" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\screen\RenderTexture.cpp - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgscreen" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgscreen" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\screen\shader.cpp - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgscreen" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgscreen" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\screen\win32-printer.h - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgscreen" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgscreen" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgserial" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\serial\serial.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgserial" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgserial" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgsound" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\sound\sample_openal.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgsound" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgsound" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\sound\soundmgr_openal.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgsound" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgsound" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\sound\xmlsound.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgsound" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgsound" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgstructure" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\structure\commands.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgstructure" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgstructure" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\structure\exception.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgstructure" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgstructure" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\structure\event_mgr.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgstructure" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgstructure" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\structure\subsystem_mgr.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgstructure" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgstructure" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgtiming" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\timing\geocoord.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgtiming" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgtiming" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\timing\lowleveltime.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgtiming" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgtiming" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\timing\sg_time.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgtiming" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgtiming" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\timing\timestamp.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgtiming" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgtiming" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\timing\timezone.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgtiming" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgtiming" - -!ENDIF - -# End Source File -# End Group -# Begin Group "Lib_sgxml" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\simgear\xml\asciitab.h - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgxml" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgxml" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\xml\easyxml.cxx - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgxml" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgxml" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\xml\hashtable.h - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgxml" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgxml" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\xml\hashtable.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgxml" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgxml" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\xml\iasciitab.h - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgxml" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgxml" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\xml\latin1tab.h - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgxml" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgxml" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\xml\nametab.h - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgxml" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgxml" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\xml\utf8tab.h - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgxml" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgxml" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\xml\xmldef.h - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgxml" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgxml" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\xml\xmlparse.h - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgxml" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgxml" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\xml\xmlparse.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgxml" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgxml" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\xml\xmlrole.h - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgxml" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgxml" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\xml\xmlrole.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgxml" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgxml" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\xml\xmltok.h - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgxml" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgxml" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\xml\xmltok.c - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgxml" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgxml" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\simgear\xml\xmltok_impl.h - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# PROP Intermediate_Dir "Release\Lib_sgxml" - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# PROP Intermediate_Dir "Debug\Lib_sgxml" - -!ENDIF - -# End Source File -# End Group -# Begin Source File - -SOURCE=.\simgear\simgear_config.h.vc5 - -!IF "$(CFG)" == "SimGear - Win32 Release" - -# Begin Custom Build - Creating config.h -InputPath=.\simgear\simgear_config.h.vc5 - -".\simgear\simgear_config.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - copy .\simgear\simgear_config.h.vc5 .\simgear\simgear_config.h - -# End Custom Build - -!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" - -# Begin Custom Build - Creating config.h -InputPath=.\simgear\simgear_config.h.vc5 - -".\simgear\simgear_config.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - copy .\simgear\simgear_config.h.vc5 .\simgear\simgear_config.h - -# End Custom Build - -!ENDIF - -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="SimGear" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Static Library" 0x0104 + +CFG=SimGear - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "SimGear.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "SimGear.mak" CFG="SimGear - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "SimGear - Win32 Release" (based on "Win32 (x86) Static Library") +!MESSAGE "SimGear - Win32 Debug" (based on "Win32 (x86) Static Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +RSC=rc.exe + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Target_Dir "" +LINK32=link.exe -lib +# ADD CPP /nologo /MT /W3 /GX /O2 /I "." /I "..\.." /I ".\SimGear" /I "..\..\zlib-1.2.3" /I "..\..\OpenAL\include" /I "..\..\OpenAL\alut\include" /D "NDEBUG" /D "WIN32" /D "_MBCS" /D "_USE_MATH_DEFINES" /D "HAVE_CONFIG_H" /FD /c +# ADD BASE RSC /l 0xc09 +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Target_Dir "" +LINK32=link.exe -lib +# ADD CPP /nologo /MTd /W3 /GX /ZI /Od /I "." /I "..\.." /I ".\SimGear" /I "..\..\zlib-1.2.3" /I "..\..\OpenAL\include" /I "..\..\OpenAL\alut\include" /D "_DEBUG" /D "WIN32" /D "_MBCS" /D "_USE_MATH_DEFINES" /D "_CRT_SECURE_NO_DEPRECATE" /D "HAVE_CONFIG_H" /FR /FD /GZ /c +# ADD BASE RSC /l 0xc09 +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo + +!ENDIF + +# Begin Target + +# Name "SimGear - Win32 Release" +# Name "SimGear - Win32 Debug" +# Begin Group "Lib_sgbucket" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\bucket\newbucket.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgbucket" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgbucket" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgdebug" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\debug\logstream.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgdebug" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgdebug" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgephem" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\ephemeris\celestialBody.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgephem" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgephem" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\ephemeris\ephemeris.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgephem" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgephem" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\ephemeris\jupiter.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgephem" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgephem" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\ephemeris\mars.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgephem" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgephem" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\ephemeris\mercury.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgephem" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgephem" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\ephemeris\moonpos.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgephem" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgephem" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\ephemeris\neptune.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgephem" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgephem" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\ephemeris\pluto.hxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgephem" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgephem" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\ephemeris\saturn.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgephem" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgephem" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\ephemeris\star.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgephem" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgephem" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\ephemeris\stardata.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgephem" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgephem" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\ephemeris\uranus.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgephem" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgephem" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\ephemeris\venus.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgephem" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgephem" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgio" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\io\iochannel.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgio" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgio" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\io\lowlevel.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgio" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgio" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\io\sg_binobj.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgio" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgio" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\io\sg_file.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgio" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgio" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\io\sg_serial.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgio" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgio" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\io\sg_socket.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgio" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgio" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\io\sg_socket_udp.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgio" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgio" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgmagvar" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\magvar\coremag.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmagvar" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmagvar" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\magvar\coremag.hxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmagvar" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmagvar" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\magvar\magvar.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmagvar" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmagvar" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgmath" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\math\fastmath.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmath" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmath" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\math\interpolater.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmath" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmath" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\math\leastsqs.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmath" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmath" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\math\polar3d.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmath" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmath" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\math\sg_geodesy.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmath" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmath" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\math\sg_random.c + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmath" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmath" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\math\SGGeodesy.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmath" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmath" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\math\vector.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmath" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmath" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgenvironment" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\environment\metar.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgenvironment" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgenvironment" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\environment\visual_enviro.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgenvironment" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgenvironment" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgmisc" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\misc\interpolator.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmisc" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmisc" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\misc\sg_path.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmisc" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmisc" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\misc\sgstream.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmisc" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmisc" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\misc\strutils.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmisc" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmisc" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\misc\tabbed_values.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmisc" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmisc" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\misc\texcoord.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmisc" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmisc" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\misc\zfstream.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmisc" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmisc" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgnasal" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\nasal\bitslib.c + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\nasal\code.c + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\nasal\code.h + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\nasal\codegen.c + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\nasal\data.h + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\nasal\gc.c + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\nasal\hash.c + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\nasal\iolib.c + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\nasal\iolib.h + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\nasal\lex.c + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\nasal\lib.c + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\nasal\mathlib.c + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\nasal\misc.c + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\nasal\nasal.h + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\nasal\parse.c + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\nasal\parse.h + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\nasal\string.c + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=".\simgear\nasal\thread-posix.c" + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=".\simgear\nasal\thread-win32.c" + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\nasal\vector.c + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgnasal" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgnasal" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgprops" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\props\condition.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgprops" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgprops" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\props\props.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgprops" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgprops" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\props\props_io.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgprops" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgprops" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgroute" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\route\route.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgroute" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgroute" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\route\waypoint.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgroute" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgroute" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgmaterial" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\scene\material\mat.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmaterial" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmaterial" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\material\matlib.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmaterial" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmaterial" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\material\matmodel.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmaterial" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmaterial" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgmodel" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\scene\model\animation.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmodel" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmodel" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\model\custtrans.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmodel" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmodel" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\model\location.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmodel" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmodel" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\model\model.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmodel" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmodel" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\model\modellib.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmodel" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmodel" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\model\personality.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmodel" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmodel" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\model\placement.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmodel" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmodel" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\model\placementtrans.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmodel" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmodel" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\model\shadanim.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmodel" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmodel" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\model\shadowvolume.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgmodel" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgmodel" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgsky" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\scene\sky\bbcache.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgsky" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgsky" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\sky\cloud.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgsky" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgsky" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\sky\cloudfield.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgsky" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgsky" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\sky\dome.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgsky" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgsky" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\sky\moon.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgsky" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgsky" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\sky\newcloud.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgsky" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgsky" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\sky\oursun.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgsky" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgsky" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\sky\sky.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgsky" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgsky" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\sky\sphere.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgsky" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgsky" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\sky\stars.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgsky" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgsky" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgtgdb" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\scene\tgdb\apt_signs.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgtgdb" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgtgdb" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\tgdb\leaf.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgtgdb" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgtgdb" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\tgdb\obj.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgtgdb" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgtgdb" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\tgdb\pt_lights.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgtgdb" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgtgdb" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\scene\tgdb\userdata.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgtgdb" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgtgdb" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgscreen" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\screen\extensions.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgscreen" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgscreen" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\screen\GLBitmaps.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgscreen" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgscreen" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\screen\RenderTexture.cpp + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgscreen" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgscreen" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=".\simgear\screen\screen-dump.cxx" + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgscreen" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgscreen" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\screen\shader.cpp + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgscreen" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgscreen" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\screen\texture.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgscreen" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgscreen" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\screen\tr.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgscreen" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgscreen" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=".\simgear\screen\win32-printer.h" + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgscreen" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgscreen" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgserial" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\serial\serial.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgserial" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgserial" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgsound" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\sound\sample_openal.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgsound" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgsound" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\sound\soundmgr_openal.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgsound" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgsound" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\sound\xmlsound.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgsound" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgsound" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgstructure" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\structure\commands.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgstructure" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgstructure" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\structure\event_mgr.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgstructure" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgstructure" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\structure\exception.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgstructure" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgstructure" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\structure\subsystem_mgr.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgstructure" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgstructure" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgtiming" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\timing\geocoord.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgtiming" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgtiming" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\timing\lowleveltime.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgtiming" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgtiming" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\timing\sg_time.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgtiming" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgtiming" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\timing\timestamp.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgtiming" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgtiming" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\timing\timezone.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgtiming" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgtiming" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Lib_sgxml" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\simgear\xml\asciitab.h + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgxml" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgxml" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\xml\easyxml.cxx + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgxml" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgxml" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\xml\hashtable.c + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgxml" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgxml" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\xml\hashtable.h + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgxml" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgxml" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\xml\iasciitab.h + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgxml" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgxml" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\xml\latin1tab.h + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgxml" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgxml" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\xml\nametab.h + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgxml" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgxml" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\xml\utf8tab.h + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgxml" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgxml" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\xml\xmldef.h + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgxml" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgxml" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\xml\xmlparse.c + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgxml" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgxml" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\xml\xmlparse.h + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgxml" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgxml" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\xml\xmlrole.c + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgxml" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgxml" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\xml\xmlrole.h + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgxml" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgxml" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\xml\xmltok.c + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgxml" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgxml" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\xml\xmltok.h + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgxml" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgxml" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\xml\xmltok_impl.h + +!IF "$(CFG)" == "SimGear - Win32 Release" + +# PROP Intermediate_Dir "Release\Lib_sgxml" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\Lib_sgxml" + +!ENDIF + +# End Source File +# End Group +# Begin Source File + +SOURCE=.\simgear\simgear_config.h + +!IF "$(CFG)" == "SimGear - Win32 Release" + +!ELSEIF "$(CFG)" == "SimGear - Win32 Debug" + +# PROP Ignore_Default_Tool 1 +USERDEP__SIMGE="simgear\simgear_config.h.vc5" +# Begin Custom Build +InputPath=.\simgear\simgear_config.h + +"simgear\simgear_config.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" + copy simgear\simgear_config.h.vc5 simgear\simgear_config.h + +# End Custom Build + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\simgear\simgear_config.h.vc5 +# End Source File +# End Target +# End Project