Skip to content
Snippets Groups Projects
Commit 4d13a93d authored by Amorilia's avatar Amorilia
Browse files

More gcc compilation fixes.

parent e11095d4
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ if sys.platform == 'linux2' or sys.platform == 'linux-i386':
python_lib = ['python%d.%d' % sys.version_info[0:2]]
python_libpath = [sysconfig.get_python_lib (0, 1) + '/config']
python_include = [sysconfig.get_python_inc ()]
cppflags = '-fPIC -Wall'
cppflags = '-fPIC -Wall -ggdb'
elif sys.platform == 'cygwin':
python_lib = ['python%d.%d' % sys.version_info[0:2]]
python_libpath = [sysconfig.get_python_lib (0, 1) + '/config']
......
......@@ -832,4 +832,4 @@ void RegisterBlockFactories () {
global_block_map["NiWireframeProperty"] = CreateNiWireframeProperty;
global_block_map["NiZBufferProperty"] = CreateNiZBufferProperty;
global_block_map["RootCollisionNode"] = CreateRootCollisionNode;
}
\ No newline at end of file
}
......@@ -66,4 +66,4 @@ Matrix44 NiAVObject::GetLocalBindPos() const {
* \param m The 4x4 world bind position matrix of this node
* \sa INode::GetLocalBindPos, INode::GetWorldBindPos
*/
void NiAVObject::SetWorldBindPos( Matrix44 const & m ) {}
\ No newline at end of file
void NiAVObject::SetWorldBindPos( Matrix44 const & m ) {}
......@@ -76,4 +76,4 @@ private:
Matrix44 bindPosition;
};
#endif
\ No newline at end of file
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment