From: Ralph T. <ra...@us...> - 2005-03-28 21:32:17
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/adam_tutorial In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28901/adobe-source/adobe/test/adam_tutorial Modified Files: Jamfile Removed Files: boost-build.jam project-root.jam Log Message: New build system, more like the Jamfiles in Boost. The asl libraries can now be build as /adobe//asl and /adobe//asl_dev (for the regular and development versions). The adam_tutorial and visual code also have nice Jamfiles now. The main benefit of the new Jamfiles is that everything gets built once only (e.g.: /adobe//asl_dev only gets build once if both visual and adam_tutorial are built). The directories which the generated binaries are delivered into are different from the old ones. We put generated binaries into a boost-style tree, e.g.: bin/<compiler>/<variant>/<link type>... --- boost-build.jam DELETED --- Index: Jamfile =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/adam_tutorial/Jamfile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Jamfile 19 Mar 2005 00:16:43 -0000 1.1 --- Jamfile 28 Mar 2005 21:31:49 -0000 1.2 *************** *** 1,47 **** import testing ; ! project ! : requirements <include>../../ ! : requirements <include>../../../ ! : requirements <include>../../source/ ! : requirements <include>../../../third_party/boost_tp/boost/ ; ! exe "adam_tutorial" ! : main.cpp ! ../../source/adam.cpp ! ../../source/adam_evaluate.cpp ! ../../source/adam_parser.cpp ! ../../source/array.cpp ! ../../source/dictionary.cpp ! ../../source/eve.cpp ! ../../source/eve_evaluate.cpp ! ../../source/eve_parser.cpp ! ../../source/expression_parser.cpp ! ../../source/istream.cpp ! ../../source/lex_stream.cpp ! ../../source/name.cpp ! ../../source/parser_shared.cpp ! ../../source/rectangle.cpp ! ../../source/string_pool.cpp ! ../../source/test_configuration.cpp ! ../../source/token.cpp ! ../../source/typeinfo.cpp ! ../../source/value.cpp ! ../../source/virtual_machine.cpp ! ../../future/source/iomanip.cpp ! ../../future/source/iomanip_pdf.cpp ! ../../../third_party/boost_tp/boost/libs/filesystem/src/convenience.cpp ! ../../../third_party/boost_tp/boost/libs/filesystem/src/exception.cpp ! ../../../third_party/boost_tp/boost/libs/filesystem/src/operations_posix_windows.cpp ! ../../../third_party/boost_tp/boost/libs/filesystem/src/path_posix_windows.cpp ! ../../../third_party/boost_tp/boost/libs/signals/src/connection.cpp ! ../../../third_party/boost_tp/boost/libs/signals/src/named_slot_map.cpp ! ../../../third_party/boost_tp/boost/libs/signals/src/signal_base.cpp ! ../../../third_party/boost_tp/boost/libs/signals/src/slot.cpp ! ../../../third_party/boost_tp/boost/libs/signals/src/trackable.cpp ! ../../../third_party/boost_tp/boost/libs/thread/src/exceptions.cpp ! ../../../third_party/boost_tp/boost/libs/thread/src/mutex.cpp ! ../../../third_party/boost_tp/boost/libs/thread/src/once.cpp ! : <define>ADOBE_SERIALIZATION ; --- 1,11 ---- import testing ; ! project adobe/adam_tutorial ! : requirements <link>static ; ! exe "adam_tutorial" : ! main.cpp ! /adobe//asl_dev ! /boost/filesystem//boost_filesystem ; --- project-root.jam DELETED --- |