mirror of
https://github.com/boostorg/build.git
synced 2026-02-12 12:02:24 +00:00
* new/common.jam (copy): New rule. * new/targets.jam (main-target.generate): Use a different algorith for selecting subvariant. Favour one with the longest intersection of requirements with build properties. * new/virtual-target.jam (virtual-target): Eliminate 'subvariant' attribute. Use properties of action to for the same purpose. New methods 'set-path' and 'extra-grist'. [SVN r16129]
11 lines
99 B
C++
11 lines
99 B
C++
|
|
#include <a.h>
|
|
|
|
int main()
|
|
{
|
|
#ifdef RELEASE
|
|
release();
|
|
#else
|
|
debug();
|
|
#endif
|
|
} |