[pygccxml-development] Header file names are turned to lowercase on Windows
Brought to you by:
mbaas,
roman_yakovenko
From: Matthias B. <ba...@ir...> - 2006-10-16 09:22:17
|
Hi, I noticed that the header file names are turned to lowercase when Py++ is run on Windows. This makes it impossible to use the generated code on case-sensitive systems like Linux as well. After some investigation I found out that include_directories_t.normalize() calls os.path.normcase() on the path which converts the file name to lowercase. Could this be changed so that the original file name is preserved? (probably by using normpath() instead of normcase()) - Matthias - |