Changeset 1288 in Sophya for trunk/SophyaLib/SysTools
- Timestamp:
- Nov 2, 2000, 7:46:07 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SysTools/cxxcmplnk.h
r1277 r1288 23 23 24 24 inline void AddCompileOptions(string const & opt) 25 { compOptions += opt; }25 { compOptions += " " + opt; } 26 26 inline void SetCompileOptions(string const & opt = "") 27 27 { compOptions = opt; } … … 30 30 31 31 inline void AddLinkOptions(string const & opt) 32 { linkOptions += opt; }32 { linkOptions += " " + opt; } 33 33 inline void SetLinkOptions(string const & opt = "") 34 34 { linkOptions = opt; }
Note:
See TracChangeset
for help on using the changeset viewer.