This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 161569 - bjam support
Summary: bjam support
Status: NEW
Alias: None
Product: cnd
Classification: Unclassified
Component: Project (show other bugs)
Version: 5.x
Hardware: All All
: P3 blocker with 2 votes (vote)
Assignee: issues@cnd
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-03-31 12:10 UTC by carfield
Modified: 2014-04-14 14:31 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description carfield 2009-03-31 12:10:02 UTC
Possible to support more build system than makefiles, like bjam?
Comment 1 Thomas Preisler 2009-06-16 20:58:03 UTC
not likely in 6.8
Comment 2 another_bad_hair_day 2009-06-29 08:56:02 UTC
Could somebody please answer/classify issue 155113 - Support for Scons
Comment 3 soldatov 2011-03-17 12:02:17 UTC
NetBeans 7.0 has "Use Smart Build Analyzer to Configure Code Assistance" checkbox and it resolves some problems. But "C/C++ Project with Existing Sources" has not any field in order to add './bjam' command.
Workaround: I created fake_Makefile file

default:
        ./bjam

clean:
        echo clean
Comment 4 Alexander Simon 2011-03-17 13:36:38 UTC
Probably better workaround is:
default:
        ./bjam -a

clean:
        ./bjam --clean

IMHO it is an issue.
CND should support shell commands for "make clean" and "make".