From: Foster B. <fos...@us...> - 2006-02-23 23:29:33
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/begin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25760/adobe/test/begin Modified Files: Jamfile.v2 Log Message: the state of things. We've been working to isolate static_text_t (now called label_t) but it has been slow going because we're trying to wrestle with perfecting the API and what effect that has on other components that were using label_t in a way that isn't in accordance with the new API we're trying to write. As it stands static_disabled_text_m is broken on both platforms, but everything else should be working better. Index: Jamfile.v2 =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/begin/Jamfile.v2,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Jamfile.v2 3 Feb 2006 18:33:38 -0000 1.6 --- Jamfile.v2 23 Feb 2006 23:28:56 -0000 1.7 *************** *** 7,11 **** HEADER_DIRECTORY = headers ; - switch [ os.name ] { --- 7,10 ---- *************** *** 95,99 **** # PLATFORM_EXTRAS = ! ; } } --- 94,98 ---- # PLATFORM_EXTRAS = ! ; } } *************** *** 106,112 **** ; EXE_SOURCES = ! $(SOURCE_DIRECTORY)/express_viewer.cpp ! $(SOURCE_DIRECTORY)/report_exception.cpp $(SOURCE_DIRECTORY)/$(PLATFORM_DIRECTORIES_NAME)/main.cpp ; --- 105,116 ---- ; + COMMON_SOURCES = + express_viewer + report_exception + file + ; + EXE_SOURCES = ! $(SOURCE_DIRECTORY)/$(COMMON_SOURCES).cpp $(SOURCE_DIRECTORY)/$(PLATFORM_DIRECTORIES_NAME)/main.cpp ; |