2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-17 01:32:12 +00:00

Made STATIC-LIB and SHARED-LIB derived from LIB.

[SVN r15617]
This commit is contained in:
Vladimir Prus
2002-10-01 15:13:01 +00:00
parent 50cb869748
commit adf2507def
2 changed files with 6 additions and 4 deletions

View File

@@ -25,9 +25,10 @@ compose <variant>debug : <optimization>off <rtti>on <debug-symbols>on ;
compose <variant>release : <optimization>on <rtti>on <debug-symbols>off ;
type.register EXE : : : main ;
type.register STATIC-LIB : a : : main ;
type.register SHARED-LIB : so : : main ;
type.register LIB : : : main ;
type.register STATIC-LIB : a : LIB : main ;
type.register SHARED-LIB : so : LIB : main ;
type.register CPP : cpp cxx ;
type.register H : h ;
type.register C : c ;

View File

@@ -25,9 +25,10 @@ compose <variant>debug : <optimization>off <rtti>on <debug-symbols>on ;
compose <variant>release : <optimization>on <rtti>on <debug-symbols>off ;
type.register EXE : : : main ;
type.register STATIC-LIB : a : : main ;
type.register SHARED-LIB : so : : main ;
type.register LIB : : : main ;
type.register STATIC-LIB : a : LIB : main ;
type.register SHARED-LIB : so : LIB : main ;
type.register CPP : cpp cxx ;
type.register H : h ;
type.register C : c ;