mirror of
https://github.com/boostorg/build.git
synced 2026-02-16 13:22:11 +00:00
* new/targets.jam: Check for duplicate 'basic-target::generate()' calls.
Use better logic to tell is source is another main target or file.
(project-target::has-main-target): New rule.
* new/project.jam (lookup): Fixes. (find-target): Implemented.
* new/make.jam: New file, defines the 'make' rule and associated target
class.
* new/build-system.jam: Import 'make'. Generate virtual targets and
actualize them.
* new/utility.jam: Added "MkDir" rule and actions.
* test/project_test3.py: New test.
[SVN r14249]
18 lines
600 B
Plaintext
18 lines
600 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 variant : debug release : implicit composite ;
|
|
compose <variant>debug : <optimization>off ;
|
|
compose <variant>release : <optimization>on ;
|
|
|
|
|