when building CEGUI 0.8.2 with CMake, most libraries get the filename along a pattern like CEGUIBase-0.lib, etc. and the installation directories like cegui-0. Wouldn't it be better to name them with the correct, complete version string!? For example:
CEGUIBase-0.lib -> CEGUIBase-0.8.2.lib
cegui-0\ -> cegui-0.8.2\
In order to achieve that, all appearances within the CMakeLists.txt and cmake/CEGUIMacros.cmake files of:
Code: Select all
-${CEGUI_VERSION_MAJOR}.${CEGUI_VERSION_MINOR}
or
Code: Select all
-${CEGUI_VERSION_MAJOR}
Should be replaced by:
Code: Select all
-${CEGUI_VERSION}
Further question: Why are some files created with version suffix and some of them are not?
Best regards,
Knewton