Fixes compilation issues due to private copy constructors using older versions of gcc

Added additional default library and include directories to cmake build file
Fixes a compilation error in the python wrapper
This commit is contained in:
Thomas Krijnen
2011-08-30 15:49:08 +00:00
parent ee9c00abcb
commit 44100ff0d4
5 changed files with 12 additions and 7 deletions
+1 -1
View File
@@ -36,6 +36,6 @@ namespace IfcGeomObjects {
extern bool Next();
extern const IfcGeomObject* Get();
extern bool Init(char* fn, bool world_coords = false);
extern bool Init(const char* fn, bool world_coords = false);
extern int Progress();
};