[Mysql-cocoa-commits] CVS: SMySQL SMySQL_Prefix.h,NONE,1.1 README,1.2,1.3 TO_INSTALL,1.1.1.1,1.2
Brought to you by:
sergecohen
From: Serge C. <ser...@us...> - 2003-08-16 20:36:26
|
Update of /cvsroot/mysql-cocoa/SMySQL In directory sc8-pr-cvs1:/tmp/cvs-serv23313 Modified Files: README TO_INSTALL Added Files: SMySQL_Prefix.h Log Message: Modified completely the Project Builder project to try to make it easier to understand: - The different type of framework are now different targets (whereas they where produced by different build styles before). - The names should be clearer: 1. SMySQL is a system wide framework using the libmysqlclient.dylib (DYNAMIC version of the mysql client lib, should be in /usr/local/mysql). 2. SMySQL_static is a system wide framework using the libmysqlclient.a (STATIC version of the mysql client lib). 3. SMySQL_bundled is a version of the framework that has to be placed in the Framework subfolder of an application bundle. For easy distribution it uses the STATIC version of the mysql client library. - The sources of libmysqlclient are not in the project anymore; INSTEAD the sources of the frameworks comes with my own version of the library (the one I've installed last on my computer), so that both SMySQL_static and SMySQL_bundled can be build 'out of the box' when getting the sources of the framework. - The small application to test the framework in a command line interface type of application (without bundle) has been renamed as CLI_Test (it is an evolution of MySQM_test). The target contains also a README, and a mysql script to create and populate the proper user/DB/table. - Some files have been marked as OBSOLETE... They really are VERY obsolete. 2003-08-16; Serge Cohen. --- NEW FILE: SMySQL_Prefix.h --- // // Prefix header for all source files of the 'SMySQL' target in the 'SMySQL' project. // #ifdef __OBJC__ #import <Foundation/Foundation.h> #import <AppKit/AppKit.h> #endif Index: README =================================================================== RCS file: /cvsroot/mysql-cocoa/SMySQL/README,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** README 25 Dec 2002 21:17:37 -0000 1.2 --- README 16 Aug 2003 20:36:23 -0000 1.3 *************** *** 1,4 **** ! READ ME file for SMySQL, from MySQL Cocoa project. --- 1,6 ---- ! OBSOLETE!!!!! + + READ ME file for SMySQL, from MySQL Cocoa project. Index: TO_INSTALL =================================================================== RCS file: /cvsroot/mysql-cocoa/SMySQL/TO_INSTALL,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** TO_INSTALL 1 Jan 2002 17:16:29 -0000 1.1.1.1 --- TO_INSTALL 16 Aug 2003 20:36:23 -0000 1.2 *************** *** 1,2 **** --- 1,5 ---- + OBSOLETE!!!!! + + cd SMySQL.pbproj pbxbuild -target SMySQL -buildstyle Development install DSTROOT=/ |