Update of /cvsroot/mysql-cocoa/SMySQL/SMySQL.pbproj
In directory sc8-pr-cvs1:/tmp/cvs-serv23313/SMySQL.pbproj
Modified Files:
project.pbxproj
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.
Index: project.pbxproj
===================================================================
RCS file: /cvsroot/mysql-cocoa/SMySQL/SMySQL.pbproj/project.pbxproj,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** project.pbxproj 16 Aug 2003 14:11:18 -0000 1.17
--- project.pbxproj 16 Aug 2003 20:36:23 -0000 1.18
***************
*** 11,15 ****
--- 11,17 ----
buildSettings = {
COPY_PHASE_STRIP = NO;
+ DEBUGGING_SYMBOLS = YES;
OPTIMIZATION_CFLAGS = "-O0";
+ PROFILING_CODE = YES;
};
isa = PBXBuildStyle;
***************
*** 21,24 ****
[...3688 lines suppressed...]
isa = PBXGroup;
! name = "Other Sources";
refType = 4;
};
! 32DBCF5E0370ADEE00C91783 = {
! fileEncoding = 4;
isa = PBXFileReference;
! path = SMySQL_Prefix.h;
refType = 4;
+ };
+ 32DBCF5F0370ADEE00C91783 = {
+ fileRef = 32DBCF5E0370ADEE00C91783;
+ isa = PBXBuildFile;
+ settings = {
+ ATTRIBUTES = (
+ Private,
+ );
+ };
};
};
|