Adding Libraries to ProjectsIn addition to Qt libraries, you can add other libraries to your projects. The way the library is added depends on whether it is a system library or your own library or a 3rd party library located in the build tree of the current project or in another build tree. Because system libraries do not typically change and are often found by default, you do not need to specify the path to the library or to its includes when you add it. For your own libraries and 3rd party libraries, you need to specify the paths. Qt Creator tries to quess the include path for an external library, but you need to check it and modify it if necessary. Qt Creator automatically adds the include path for an internal library. For all libraries, select the target platforms for the application, library, or plugin. Specify whether the library is statically or dynamically linked. For a statically linked internal library, Qt Creator adds dependencies (PRE_TARGETDEPS) in the project file. Depending on the development platform, some options might be detected automatically. For example, on Mac OS, the library type (Library or Framework) is detected automatically and the option is hidden. However, if you develop on another platform than Mac OS and want to build your project for the Mac OS, you must specify the library type. The default convention on Windows is that the debug and release versions of a library have the same name, but are placed in different subdirectories, usually called debug and release. If the library path does not contain either of these folders, you cannot select the option to place the libraries in separate folders. Alternatively, the letter d can be added to the library name for the debug version. For example, if the release version is called example.lib, the debug version is called exampled.lib. You can specify that the letter is added for the debug version and removed for the release version. If the library name ends in d, deselect the Remove "d" suffix for release version option. Qt Creator supports code completion and syntax highlighting for the added libraries once your project successfully builds and links to them. To Add Libraries
For more information about the project file settings, see Declaring Other Libraries. Example of Adding Internal LibrariesThe following example describes how to add a statically linked internal library to your project.
[Previous: Opening a Project] [Next: Connecting MeeGo Harmattan Devices] © 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide. All other trademarks are property of their respective owners. Privacy Policy Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia. Alternatively, this document may be used under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. X
|