mirror of
https://github.com/boostorg/build.git
synced 2026-02-16 13:22:11 +00:00
* new/project.jam (lookup): Bugfixes. (find-target): Attempt to load
project specified by project id.
Project module rules:
project: Allow empty id.
use-project: New rule.
* new/targets.jam: (basic-target.generate-source): Correct a bug in
separating target id from extra properties.
[SVN r14341]
19 lines
655 B
Plaintext
19 lines
655 B
Plaintext
# Copyright (C) Vladimir Prus 2002. Permission to copy, use, modify, sell and
|
|
# distribute this software is granted provided this copyright notice appears in
|
|
# all copies. This software is provided "as is" without express or implied
|
|
# warranty, and with no claim as to its suitability for any purpose.
|
|
|
|
# Defines standard features and rules.
|
|
|
|
import feature : feature compose ;
|
|
|
|
feature toolset : gcc : implicit ;
|
|
feature optimization : off on ;
|
|
feature threading : single multi : link-incompatible ;
|
|
|
|
feature variant : debug release : implicit composite ;
|
|
compose <variant>debug : <optimization>off ;
|
|
compose <variant>release : <optimization>on ;
|
|
|
|
|