From: <no...@so...> - 2002-06-04 00:13:51
|
Task #55364 has been updated. Project: Generic Graphics Toolkit Subproject: GMTL Summary: Add Version Info Complete: 100% Status: Closed Authority : nonchocoboy Assigned to: nonchocoboy Description: We need some way to provide versioning information to developers. Implementation options include the way Boost does it with one macro or how Vapor does it with 3 macros. Follow-Ups: ------------------------------------------------------- Date: 2002-06-03 19:13 By: nonchocoboy Comment: Version.h added with the following members: - GMTL_VERSION defined as <major><minor><patch> with each part having exactly 3 digits. - const char* gmtl::version is set to the string "<major><minor><patch>" with each part having anywhere from 1 to 3 digits. So if GMTL is at version 1.10.299, you would effectively have ... #define GMTL_VERSION 001010299 const char* gmtl::version = "1.10.299" ------------------------------------------------------- Date: 2002-06-03 15:42 By: nonchocoboy Comment: Correction: Boost defines a version string that that requires math operations on it to get the version parts. Vapor defines a version string as major.minor.micro. ------------------------------------------------------- For more info, visit: http://sourceforge.net/pm/task.php?func=detailtask&project_task_id=55364&group_id=43735&group_project_id=16299 |