2
0
mirror of https://github.com/boostorg/build.git synced 2026-01-31 20:12:19 +00:00

Support for solaris

* tools/rc.jam
   (resource-compile): on SOLARIS, create empty object

Patch from Andre Hentz.


[SVN r20563]
This commit is contained in:
Vladimir Prus
2003-10-30 07:56:42 +00:00
parent 3a52408ac6
commit 54916eb642

View File

@@ -6,6 +6,7 @@
import type ;
import generators ;
import feature ;
import errors ;
type.register RC : rc ;
@@ -24,6 +25,8 @@ rule resource-compile ( target : sources * : properties * )
resource-compile-cygwin $(target) : $(sources[1]) ;
case "FREEBSD" :
create-empty-object $(target) : $(sources[1]) ;
case "SOLARIS" :
create-empty-object $(target) : $(sources[1]) ;
case "*" :
errors.error "Cannot process RC files for OS=$(OS)" ;
}