Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 877 Bytes

README.md

File metadata and controls

42 lines (25 loc) · 877 Bytes

QtxCore

QtxCore provides extra core classes that are generally useful to Qt applications and libraries.

Build

To build a dynamic library:

$ qmake CONFIG+=dylib
$ make

To build a static library:

$ qmake CONFIG+=static
$ make

Test

To run the test suite, first configure and build QtxCore as a dynamic library, which each test executable will link against. Then invoke the check target to execute all tests in the suite.

$ qmake CONFIG+=dylib
$ make
$ make check

Documentation

To generate API documentation, invoke the docs target.

$ make docs

To view the documentation, open it in a web browser.

$ open doc/qtxcore/qtxcore-module.html

License

Apache License, Version 2.0

Copyright (c) 2012-2013 Sifteo Inc. <http://www.sifteo.com/>