##// END OF EJS Templates
Coverage creation fix
Coverage creation fix

File last commit:

r1445:2f9e4b839d4c
r1445:2f9e4b839d4c
Show More
config.pri
98 lines | 3.2 KiB | text/plain | TextLexer
Michal Klocek
Add test to common build
r34
Michal Klocek
Simplfies default configuration
r1021 LIBRARY_NAME = QtCommercialChart
Tero Ahola
Removed system_build from build config
r1439 CONFIG(debug, debug|release) {
mac: LIBRARY_NAME = $$join(LIBRARY_NAME,,,_debug)
win32: LIBRARY_NAME = $$join(LIBRARY_NAME,,,d)
}
coverage: CONFIG += debug
Michal Klocek
Simplfies default configuration
r1021
##################### SHADOW CONFIG #################################################
Michal Klocek
Chages 'find' to 'contains' in src.pro to make windows linux build the same
r711 !contains($${PWD}, $${OUT_PWD}){
Michal Klocek
Improves build configuration...
r996 search = "$$PWD:::"
Michal Klocek
Adds shadow build support
r708 temp = $$split(search,"/")
temp = $$last(temp)
path = $$replace(search,$$temp,'')
temp = $$split(OUT_PWD,$$path)
temp = $$split(temp,'/')
temp = $$first(temp)
path = "$${path}$${temp}"
Michal Klocek
Improves build configuration...
r996 SHADOW=$$path
Michal Klocek
Chages 'find' to 'contains' in src.pro to make windows linux build the same
r711 }else{
SHADOW=$$PWD
Michal Klocek
Updates development_build option
r998 CONFIG-=development_build
Michal Klocek
Adds shadow build support
r708 }
Michal Klocek
Simplfies default configuration
r1021 ##################### BUILD PATHS ##################################################
Michal Klocek
Adds shadow build support
r708 CHART_BUILD_PUBLIC_HEADER_DIR = $$SHADOW/include
Michal Klocek
Adds private headers handling...
r193 CHART_BUILD_PRIVATE_HEADER_DIR = $$CHART_BUILD_PUBLIC_HEADER_DIR/private
Michal Klocek
Adds shadow build support
r708 CHART_BUILD_LIB_DIR = $$SHADOW/lib
CHART_BUILD_DIR = $$SHADOW/build
CHART_BUILD_BIN_DIR = $$SHADOW/bin
Michal Klocek
Simplfies default configuration
r1021 CHART_BUILD_PLUGIN_DIR = $$CHART_BUILD_BIN_DIR/QtCommercial/Chart
Michal Klocek
Adds shadow build support
r708 CHART_BUILD_DOC_DIR = $$SHADOW/doc
Jani Honkonen
Fix building debug & release at the same time...
r1433 # Use own folders for debug and release builds
Marek Rosa
Coverage creation fix
r1445 !coverage {
CONFIG(debug, debug|release):CHART_BUILD_DIR = $$join(CHART_BUILD_DIR,,,/debug)
CONFIG(release, debug|release): CHART_BUILD_DIR = $$join(CHART_BUILD_DIR,,,/release)
}
Jani Honkonen
Fix building debug & release at the same time...
r1433
Michal Klocek
Fix compilation config for windows
r37 win32:{
Michal Klocek
Adds private headers handling...
r193 CHART_BUILD_PUBLIC_HEADER_DIR = $$replace(CHART_BUILD_PUBLIC_HEADER_DIR, "/","\\")
CHART_BUILD_PRIVATE_HEADER_DIR = $$replace(CHART_BUILD_PRIVATE_HEADER_DIR, "/","\\")
Tero Ahola
Proof-of-concept for QML api...
r120 CHART_BUILD_BUILD_DIR = $$replace(CHART_BUILD_BUILD_DIR, "/","\\")
CHART_BUILD_BIN_DIR = $$replace(CHART_BUILD_BIN_DIR, "/","\\")
Michal Klocek
Add qmlplugin support for integrated build
r255 CHART_BUILD_PLUGIN_DIR = $$replace(CHART_BUILD_PLUGIN_DIR, "/","\\")
Michal Klocek
make doc config windows friendly
r307 CHART_BUILD_DOC_DIR = $$replace(CHART_BUILD_DOC_DIR, "/","\\")
Michal Klocek
minor. put back old build path
r1042 CHART_BUILD_LIB_DIR = $$replace(CHART_BUILD_LIB_DIR, "/","\\")
Michal Klocek
Fix compilation config for windows
r37 }
Michal Klocek
Improved config handling...
r33
Tero Ahola
Fixed build on QtCommercial 4.8
r100 mac: {
# TODO: The following qmake flags are a work-around to make QtCommercial Charts compile on
# QtCommercial 4.8. On the other hand Charts builds successfully with Qt open source 4.8
# without these definitions, so this is probably a configuration issue on QtCommercial 4.8;
# it should probably define the minimum OSX version to be 10.5...
QMAKE_CXXFLAGS *= -mmacosx-version-min=10.5
QMAKE_LFLAGS *= -mmacosx-version-min=10.5
}
Michal Klocek
Improves build configuration...
r996
Michal Klocek
Simplfies default configuration
r1021 ##################### DEVELOPMENT BUILD ###################################################
Michal Klocek
Updates development_build option
r998 development_build: {
DEFINES+=DEVELOPMENT_BUILD
Michal Klocek
minor. missing line option
r1000 CONFIG+=debug_and_release
Michal Klocek
Simplfies default configuration
r1021 }
##################### BUILD CONFIG ########################################################
Tero Ahola
Removed system_build from build config
r1439 INCLUDEPATH += $$CHART_BUILD_PUBLIC_HEADER_DIR
Michal Klocek
Simplfies default configuration
r1021
Tero Ahola
Removed system_build from build config
r1439 !win32: {
LIBS += -L $$CHART_BUILD_LIB_DIR -Wl,-rpath,$$CHART_BUILD_LIB_DIR
} else {
win32-msvc*: {
# hack fix for error:
# "LINK : fatal error LNK1146: no argument specified with option '/LIBPATH:'"
QMAKE_LIBDIR += $$CHART_BUILD_LIB_DIR
Tero Ahola
Fixed naming of the lib on system build; debug on OSX and Win
r1431 } else {
Tero Ahola
Removed system_build from build config
r1439 LIBS += -L $$CHART_BUILD_LIB_DIR
Michal Klocek
Simplfies default configuration
r1021 }
Tero Ahola
Simplified OSX local builds
r1034 }
Michal Klocek
Adds visibility hidden compilation flag, adds EXPORT_AUTO macro for interal unit testing
r1050
Tero Ahola
Removed system_build from build config
r1439 LIBS += -l$$LIBRARY_NAME
Jani Honkonen
Adding support for static builds.
r1440 # This will undefine Q_DECL_EXPORT/Q_DECL_IMPORT at qchartglobal.h
# They should not be used for staticlib builds.
staticlib:DEFINES+=QTCOMMERCIALCHART_STATICLIB
Michal Klocek
Adds visibility hidden compilation flag, adds EXPORT_AUTO macro for interal unit testing
r1050 ##################### UNIT TESTS ##############################################################
CONFIG(debug, debug|release) {
CONFIG+=test_private
DEFINES+=BUILD_PRIVATE_UNIT_TESTS
}
Michal Klocek
minor. add debug flag for coverage
r1087