如何在QT for S60 中使用pthread库(Carbide.c++) (How to use pthread in QT4.6 for S60)

1. 按照下面的文章 先设置好环境

2. 修改.pro 文件,加上下面一行 LIBS += -llibpthread -llibz

3. 增加系统路径的目录,修改.pro 文件,加上下面一行 INCLUDEPATH = C:/Symbian/Carbide/workspace/PhoenixPhoneForS60/include 

4. 指定宏,修改.pro 文件,加上下面一行 MACRO = OSIP_MT

 

 

 

附件 :

QT + Open C/C++ 开发环境的搭建

 

http://wiki.forum.nokia.com/index.php/Qt_Tutorial_Lesson_1:_Installation

 

 

Qt Tutorial Lesson 1: Installation

 

Contents

  [hide]
  • 1 Wiki Article Overview
  • 2 Install Carbide C++ and Series 60 SDK
    • 2.1 Active Perl Installation
    • 2.2 Carbide C++ Installation
    • 2.3 Series 60 SDK Installation
    • 2.4 Test your Installation
  • 3 Install Open C/C++ Plugin and Qt for Symbian
    • 3.1 Install Open C/C++ Plugin
    • 3.2 Install Qt for Symbian SDK
  • 4 Setup Qt on Carbide C++
  • 5 Testing
  • 6 See Also

Wiki Article Overview

This Wiki article will provide you Qt for Symbian installation in full steps.

 

Install Carbide C++ and Series 60 SDK

Make sure you have Symbian development environment (Carbide C++ 2.0Series 60 SDK 3rd FP1 or Series 60 SDK 3rd FP2 or Series 60 SDK 5th Edition and Active Perl) installed on your computer. If you still don't have them yet, please do following these steps.

Active Perl Installation

- Download Active Perl from http://www.activestate.com/activeperl/

- install it to C:/Perl or any directory that doesn't contain space character

Carbide C++ Installation

- Download Carbide C++ 2.0 from http://www.forum.nokia.com/info/sw.nokia.com/id/dbb8841d-832c-43a6-be13-f78119a2b4cb.html

- install it to C:/ (in case if you installed Perl in different drive, you have to install Carbide C++ to the same drive as Perl)

Series 60 SDK Installation

- Download Series 60 3rd SDK FP1 or Series 60 3rd SDK FP2 or Series 60 5th SDK 1.0 fromhttp://www.forum.nokia.com/Tools_Docs_and_Code/Tools/Platforms/S60_Platform_SDKs/ (I suggest you to download S60 3rd SDK FP2 for button-based application and S60 5th SDK 1.0 for touch-based application)

- install it to the same drive as Perl and Carbide C++

Test your Installation

Now it's time to test that your Symbian Development Environment work or not.

- Open Carbide C++ 2.0 from Start Menu and define workspace directory. Please make sure that there is no space contain in workspace directory or your code will can't be compiled.

- on the menu bar, choose File -> New -> Symbian OS C++ Project

- Select GUI Application under S60 and press Next

- Define Project Name (HelloWorld for newbie) and press Next

- Check at Emulator Debug (WINSCW) and Phone Release (GCCE) under desired SDK (S60 3rd FP2 or/and S60 5th SDK) and press Next

- Define Application UID and press Finish (in case you don't know what it is, you can use the generated UID, so just press Finish)

- Now there will be a project named HelloWorld at the left pane. Right mouse click at project name and change Active Build Configuration to Emulator Debug (WINSCW)

- Press Run icon on tool bar

New Launch Configuration Wizard will appear. Select Emulator in Process to launch and then press Finish

- Carbide C++ will compile the code for you. After finish, Emulator will be launched automatically.

- Now go into Menu -> Installations. There should be HelloWorld icon

- Now launch it

- Hello Worlddddd ;)

 

Install Open C/C++ Plugin and Qt for Symbian

Install Open C/C++ Plugin

Open C Plugin is required by Qt for Symbian. To install it:

- Download latest version of Open C/C++ Plug-in from http://www.forum.nokia.com/info/sw.nokia.com/id/91d89929-fb8c-4d66-bea0-227e42df9053/Open_C_SDK_Plug-In.html

- Install it to desired SDK (In case you need to install the plug-in to multiple SDK, you have to do the installation one by one)

 

Install Qt for Symbian SDK

- Download latest version of Qt for Symbian Windows installer from http://qt.nokia.com/downloads (Download LGPL version)

- Install it to same drive as Series 60 SDK (Make sure that your selected directory does not contain any space character)

- In installation process, you will be requested to choose the SDK(s) to install Qt, please select all SDK(s) you want.

- And then Next Next and Next

- Finish!!

 

Setup Qt on Carbide C++

Now you have to setup Carbide C++ to know Qt path. To do that, please do the following step:

- Open Carbide C++ 2.0

- On the menu bar, choose Window -> Preferences

- Select Qt on the left pane and then press Add

- Enter Version Name and Browse for Qt Bin Path and then click Finish

 

Testing

To test it:

- On the menu bar, choose File -> New -> Qt Project

- Choose Qt GUI Main Window

- Define Project Name

- Select Target SDK

- Define Application UID (in case you don't know just press Finish)

- Now, there will be HelloWorldQt project appear in the left pane.

- Run with Emulator launch configuration.

HelloWorldQt icon should be in Menu -> Installations folder in Emulator

- Launch it!

- Bingo!! Hello CUTEEEEEEEEE ^_^

 

你可能感兴趣的:(如何在QT for S60 中使用pthread库(Carbide.c++) (How to use pthread in QT4.6 for S60))