Changes between Version 5 and Version 6 of DevelopingSymbianAppWithCarbide
- Timestamp:
- Dec 28, 2007 10:15:28 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevelopingSymbianAppWithCarbide
v5 v6 52 52 Select File --> Import from the menu: 53 53 54 [[Image(file_import.JPG , 80%)]]54 [[Image(file_import.JPG)]] 55 55 56 56 This dialog below will pop up. Select '''Symbian OS Bld.inf file''' from the list, then press '''Next''' button: 57 57 58 [[Image(import.JPG , 80%)]]58 [[Image(import.JPG)]] 59 59 60 60 On the next dialog, click '''Browse..''' button to select '''bld.inf''' file from PJSIP's {{{build.symbian}}} directory, then press '''Next''' button: 61 61 62 [[Image(import_bld.JPG , 80%)]]62 [[Image(import_bld.JPG)]] 63 63 64 64 Then on the SDK selection dialog, select the build configurations that you want to support. For this tutorial, select WINSCW and GCCE from S60 3rd Edition MR SDK, and press '''Next''' button: 65 65 66 [[Image(import_sdk.JPG , 80%)]]66 [[Image(import_sdk.JPG)]] 67 67 68 68 You will then presented with MMP selection dialog. Leave the default selection (normally it should select all MMPs) and press '''Next''': 69 69 70 [[Image(import_mmp.JPG , 80%)]]70 [[Image(import_mmp.JPG)]] 71 71 72 72 The project now is ready to be imported, press the '''Finish''' button: 73 73 74 [[Image(import_finished.JPG , 80%)]]74 [[Image(import_finished.JPG)]] 75 75 76 76 Carbide is now exporting the MMP files into the workspace and this progress window will be displayed: 77 77 78 [[Image(import_creating.JPG , 80%)]]78 [[Image(import_creating.JPG)]] 79 79 80 80 Wait for the process to complete. … … 82 82 Once it completes, you will see the PJSIP project three on the bottom left part of the Carbide main window: 83 83 84 [[Image(carbide_main.JPG, 80%)]] 84 [[Image(carbide_main.JPG)]] 85 86 On the '''Problems''' pane (bottom center of the main window) you can see there is one ''Warning'' about duplicate path, but we can ignore this for now. 87 88 ---- 89 90 == Building the Projects == 91 92 First select the build target by selecting '''Project''' --> '''Active Build Configuration''' from main menu, or right clicking the ''Bld.inf'' or ''pjproject'' item from ''Symbian Project Navigator'' pane from the bottom left part of the main window. Select '''Phone Debug (GCCE) [S60_3rd_MR]''' from the menu: 93 94 [[Image(build_config.JPG)]] 95 96 Then right click ''Bld.inf'' or ''pjproject'' item from ''Symbian Project Navigator'' pane from the bottom left part of the main window, and select '''Build Target Only''': 97 98 [[Image(build.JPG)]] 99 100 Wait for the build process to complete. Once it completes, watch out for any errors in the ''Problems'' pane (at the bottom center). There shouldn't be any errors. 85 101 86 102