Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jcfr/qwtexample
QwtExample is a simple example illustrating how to build a Qwt based application using CMake
https://github.com/jcfr/qwtexample
Last synced: 23 days ago
JSON representation
QwtExample is a simple example illustrating how to build a Qwt based application using CMake
- Host: GitHub
- URL: https://github.com/jcfr/qwtexample
- Owner: jcfr
- Created: 2011-07-25T21:57:40.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-07-25T22:00:19.000Z (over 13 years ago)
- Last Synced: 2024-04-16T07:02:58.956Z (7 months ago)
- Language: C++
- Homepage:
- Size: 85.9 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OVERVIEW
QwtExample is a simple example illustrating how to build a [Qwt based](http://qwt.sourceforge.net/) application using [CMake](http://www.cmake.org).
## Prerequisites
* [Qt 4.6.2](http://qt.nokia.com/downloads)
* [CMake 2.8.2](http://www.cmake.org)
* [QWT 6.0](http://qwt.sourceforge.net/)## How to build
git clone git://github.com/jcfr/QwtExample.git
mkdir QwtExample-build
cd QwtExample-build
cmake -DQT_QMAKE_EXECUTABLE:FILEPATH=/path/to/qmake -DQWT_INCLUDE_DIR:PATH=/path/to/qwt-6.0.1-svn/include/ -DQWT_LIBRARY:FILEPATH=/path/to/qwt-6.0.1-svn/lib/libqwt.so -DQWT_MATHML_LIBRARY:FILEPATH=/path/to/qwt-6.0.1-svn/lib/libqwtmathml.so ../QwtExample
make -j4
ctest## Contribute
Fork + pull.## TODO
* Use FindQwt CMake module