diff options
author | Rolland Dudemaine <rolland@ghs.com> | 2011-02-22 15:28:12 (GMT) |
---|---|---|
committer | Harald Fernengel <harald.fernengel@nokia.com> | 2011-02-22 15:28:12 (GMT) |
commit | 3bebd64ec343d85bf53712d1d9863bad9b62391f (patch) | |
tree | cc2d10cdbe3156f75cb7d4d33df7ab81ced72ca8 /examples | |
parent | c03fa07e0b52b28732bb86a34ed8ac58b1fa5397 (diff) | |
download | Qt-3bebd64ec343d85bf53712d1d9863bad9b62391f.zip Qt-3bebd64ec343d85bf53712d1d9863bad9b62391f.tar.gz Qt-3bebd64ec343d85bf53712d1d9863bad9b62391f.tar.bz2 |
Do not link with libm on INTEGRITY
Merge-request: 1101
Reviewed-by: Harald Fernengel <harald.fernengel@nokia.com>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/itemviews/chart/chart.pro | 2 | ||||
-rw-r--r-- | examples/painting/painterpaths/painterpaths.pro | 2 | ||||
-rw-r--r-- | examples/threads/mandelbrot/mandelbrot.pro | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/itemviews/chart/chart.pro b/examples/itemviews/chart/chart.pro index 53601f4..12f08b9 100644 --- a/examples/itemviews/chart/chart.pro +++ b/examples/itemviews/chart/chart.pro @@ -4,7 +4,7 @@ RESOURCES = chart.qrc SOURCES = main.cpp \ mainwindow.cpp \ pieview.cpp -unix:!mac:!symbian:!vxworks:LIBS+= -lm +unix:!mac:!symbian:!vxworks:!integrity:LIBS+= -lm TARGET.EPOCHEAPSIZE = 0x200000 0x800000 diff --git a/examples/painting/painterpaths/painterpaths.pro b/examples/painting/painterpaths/painterpaths.pro index 1f42b41..d096fa6 100644 --- a/examples/painting/painterpaths/painterpaths.pro +++ b/examples/painting/painterpaths/painterpaths.pro @@ -3,7 +3,7 @@ HEADERS = renderarea.h \ SOURCES = main.cpp \ renderarea.cpp \ window.cpp -unix:!mac:!symbian:!vxworks:LIBS += -lm +unix:!mac:!symbian:!vxworks:!integrity:LIBS += -lm # install target.path = $$[QT_INSTALL_EXAMPLES]/painting/painterpaths diff --git a/examples/threads/mandelbrot/mandelbrot.pro b/examples/threads/mandelbrot/mandelbrot.pro index ecbec56..2db886b 100644 --- a/examples/threads/mandelbrot/mandelbrot.pro +++ b/examples/threads/mandelbrot/mandelbrot.pro @@ -4,7 +4,7 @@ SOURCES = main.cpp \ mandelbrotwidget.cpp \ renderthread.cpp -unix:!mac:!symbian:!vxworks:LIBS += -lm +unix:!mac:!symbian:!vxworks:!integrity:LIBS += -lm # install target.path = $$[QT_INSTALL_EXAMPLES]/threads/mandelbrot |