|
Boost-Build : |
From: luoyi_ly (luoyi.ly_at_[hidden])
Date: 2005-07-26 04:18:53
I've copy the boost into D:/C++/
and my cxx file is:
****************************main.cxx********************************
#include "stdall.h"
using boost::unit_test::test_suite;
void info_test_function(void)
{
BOOST_CHECK( 1 == 1 ) ;
}
test_suite*
init_unit_test_suite( int, char* [] ) {
test_suite* test= BOOST_TEST_SUITE( "stat test suite" );
test->add( BOOST_TEST_CASE( &info_test_function ), 0 );
return test;
}
****************************main.cxx********************************
my jamfile is:
****************************jamfile*********************************
exe mymain : main.cxx
D:/C++/boost_1_32_0/libs/test/build//boost_unit_test_framework
: <include>D:/C++/boost_1_32_0
;
stage build : mymain
: <traverse-dependencies>on <include-type>EXE <include-
type>DLL
;
****************************jamfile*********************************
and after I try *bjam release*, I get the following err:
****************************errinfo*********************************
error: Unable to find file or target named
error: 'D:/C++/boost_1_32_0/libs/test/build//boost_unit_test_frame
work'
error: referred from project at
error: '.'
****************************errinfo*********************************
who can help me with this ?
Boost-Build list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk