##// END OF EJS Templates
Improves build configuration...
Improves build configuration * adds local_build config option * adds developer_build config option * reanmes config files * removes debug stuff * fixes headers issues

File last commit:

r941:307fa9de7436
r996:ce5f1c868418
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 }