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

Move objective-c target types declaration to common location.

[SVN r45931]
This commit is contained in:
Rene Rivera
2008-05-30 00:34:24 +00:00
parent f353a9ab98
commit c44edcaa33
2 changed files with 5 additions and 3 deletions

View File

@@ -107,9 +107,6 @@ flags darwin.compile OPTIONS <flags> ;
# The following adds objective-c support to darwin.
# Thanks to http://thread.gmane.org/gmane.comp.lib.boost.build/13759
type.register OBJECTIVE_C : m ;
type.register OBJECTIVE_CPP : mm ;
generators.register-c-compiler darwin.compile.m : OBJECTIVE_C : OBJ : <toolset>darwin ;
generators.register-c-compiler darwin.compile.mm : OBJECTIVE_CPP : OBJ : <toolset>darwin ;

5
v2/tools/types/objc.jam Normal file
View File

@@ -0,0 +1,5 @@
# Copyright Rene Rivera 2008.
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
type OBJECTIVE_C : m ;
type OBJECTIVE_CPP : mm ;