在Linux ubuntu的Qt 5中运行qwt示例

时间:2015-07-16 19:54:52

标签: c++ linux qt makefile qwt

我无法弄清楚运行使用Qwt库的示例程序需要做些什么。

我像往常一样从here下载文件- (void)applicationDidFinishLaunching:(NSNotification *)notification { if ([NSRunningApplication runningApplicationsWithBundleIdentifier:@"com.myCompany.MyApp"]){ [[NSApplication sharedApplication] terminate:self]; } else { [[NSWorkspace sharedWorkspace] launchApplication: @"My App"]; [[NSApplication sharedApplication] terminate:self]; } } ,然后转到Download Direcory,我将文件解压缩到此目录。我现在在下载目录中有qwt-6.1.2.tar.bz2目录。

我的机器中的Qt目录位于qwt-6.1.2

我如何从这里继续?

我尝试运行qmake:

/opt/Qt5.4.1/

在我运行make之后:

natile@natile-Precision-T1650:/opt/Qt5.4.1/5.4/gcc_64/bin$ sudo ./qmake /home/natile/Downloads/qwt-6.1.2/qwt.pro

但是我收到了错误:

natile@natile-Precision-T1650:/opt/Qt5.4.1/5.4/gcc_64/bin$ sudo make

cd src/ && ( test -e Makefile || /opt/Qt5.4.1/5.4/gcc_64/bin/qmake /home/natile/Downloads/qwt-6.1.2/src/src.pro -o Makefile ) && make -f Makefile

我知道我必须运行qmake。

我在安装网址中得不到任何内容:http://qwt.sourceforge.net/qwtinstall.html

请帮忙。

1 个答案:

答案 0 :(得分:2)

以下方法对我有用:

cd /home/natile/Downloads/qwt-6.1.2/
mkdir build
/opt/Qt5.4.1/5.4/gcc_64/bin/qmake qwt.pro -o build/Makefile QWT_CONFIG="QwtExamples"
cd build
make
cd examples/bin
# Now you can launch any example, like:
./dials