A Qt application template using the CMake build system, including CTest for unit testing and CPack for installation packages creation.
This project is currently just an experiment to learn CMake.
EdelApp has been developed and tested on Mac OS X 10.10.3, Qt 5.5 and CMake 3.2.2.
export CMAKE_PREFIX_PATH="$CMAKE_PREFIX_PATH:<path_to>/Qt/5.5/clang_64"
Get the code:
$ git clone [email protected]:edeltech/EdelApp.git
Configure and build (out-of-source):
$ mkdir EdelApp-build
$ cd EdelApp-build
$ cmake ../EdelApp
$ make
Run the unit tests:
$ make check
And finally, create an installation package:
$ make package
Read through the source code and CMake files you just checked out and build on it !
- Thanks to Mike McQuaid for his DeployQt4 module and the Fabula example.
- Initial release
- Update to Qt5
See LICENSE file.