##// END OF EJS Templates
Documentation fixes....
Documentation fixes. Removed empty tutorials tab from docs, to be added later. Fixed broken images in docs, added screenshot of legend.

File last commit:

r941:307fa9de7436
r995:d52b7de4b911
Show More
gdpbarchart.pro
18 lines | 498 B | text/idl | PrologLexer
Marek Rosa
gdpbarchart moved to test. Few small doc fixes
r940 !include( ../test.pri ) {
error( "Couldn't find the test.pri file!" )
}
Marek Rosa
Initial commit for gdpBarChart example.
r205
Michal Klocek
Examples build setup cleanup
r252 QT+= sql
Marek Rosa
Initial commit for gdpBarChart example.
r205 TARGET = gdpbarchart
SOURCES += main.cpp\
widget.cpp
HEADERS += widget.h
Tero Ahola
fix
r559
!mac {
Marek Rosa
Data copying for gdpbarchart updated
r941 FILE = $$PWD/gdpData
Michal Klocek
Fix cop path issue for gdbexample
r712 win32:{FILE = $$replace(FILE, "/","\\")}
Marek Rosa
Data copying for gdpbarchart updated
r941 DESTINATION = $$CHART_BUILD_BIN_DIR/test
win32:{DESTINATION = $$replace(DESTINATION, "/","\\")}
Tero Ahola
fix
r559 # TODO: QMAKE_POST_LINK does not work on mac; how to copy the data file?
Michal Klocek
Fix cop path issue for gdbexample
r712 QMAKE_POST_LINK += $$QMAKE_COPY $$FILE $$CHART_BUILD_BIN_DIR
Tero Ahola
fix
r559 }