aboutsummaryrefslogtreecommitdiff
path: root/build2/cc/install.cxx
AgeCommit message (Collapse)AuthorFilesLines
2016-08-30Change function names to make VC happyBoris Kolpackov1-1/+1
2016-08-29Implement initial support for library versioningBoris Kolpackov1-0/+54
Currently we only support platform-independent versions that get appended to the library name. The magic incantation is this: lib{foo}: bin.lib.version = @-1.2 This will produce libfoo-1.2.so, libfoo-1.2.dll, etc. In the future we will support things like this: lib{foo}: bin.lib.version = linux@1.2.3 freebsd@1.2 windows@1.2
2016-08-18Add missing includeBoris Kolpackov1-0/+2
2016-08-12Implement support for C compilationBoris Kolpackov1-0/+70
We now have two new modules: cc (c-common) and c.