Update of /cvsroot/compbench/CompBenchmarks++/Qt-4
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv6542
Modified Files:
compbenchmarks-ui-qt4.pro
Log Message:
New files added.
Index: compbenchmarks-ui-qt4.pro
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/Qt-4/compbenchmarks-ui-qt4.pro,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** compbenchmarks-ui-qt4.pro 17 May 2007 00:41:44 -0000 1.3
--- compbenchmarks-ui-qt4.pro 17 May 2007 22:38:18 -0000 1.4
***************
*** 8,17 ****
CONFIG += warn_on
INCLUDEPATH += . ../libcompbenchmarks ../testing/libcompbenchmarks
# Input
! HEADERS += Package/PackageHolder.h Package/PackageInfo.h Package/PackageList.h Package/PackageManager.h Compiler/CompilerHolder.h Compiler/CompilerInfo.h Compiler/CompilerList.h Compiler/CompilerManager.h Status/Status.h main.h
! # FORMS += tests-designer/checkItem.ui tests-designer/test.ui
! SOURCES += Package/PackageHolder.cpp Package/PackageInfo.cpp Package/PackageList.cpp Package/PackageManager.cpp Compiler/CompilerHolder.cpp Compiler/CompilerInfo.cpp Compiler/CompilerList.cpp Compiler/CompilerManager.cpp Status/Status.cpp main.cpp
LIBS += -L../testing/libcompbenchmarks/.libs -lcompbenchmarks
RESOURCES += icons/icons.qrc
--- 8,56 ----
CONFIG += warn_on
+ QMAKE_CXX = @./tool.sh compile $$QMAKE_CXX
+
INCLUDEPATH += . ../libcompbenchmarks ../testing/libcompbenchmarks
+ base_sources = Basic/OptionHolder Basic/BenchmarkHolder Basic/PlanBatchHolder
+
+ package_sources = Package/PackageHolder Package/PackageInfo Package/PackageList Package/PackageManager
+
+ compiler_sources = Compiler/CompilerHolder Compiler/CompilerInfo Compiler/CompilerList Compiler/CompilerManager
+
+ plan_sources = Plan/PlanAvailableOption Plan/PlanAvailableCompiler Plan/PlanAvailable Plan/PlanAvailableBenchmark Plan/PlanDefineToolBox Plan/PlanDefineBatch Plan/PlanDefine Plan/PlanManager
+
+ all_sources = $$base_sources $$package_sources $$compiler_sources $$plan_sources Status/Status main
+
+ defineReplace(headers) {
+ names = $$1
+ headers =
+
+ for(name, names) {
+ header = $${name}.h
+ exists($$header) {
+ headers += $$header
+ }
+ }
+ return($$headers)
+ }
+
+ defineReplace(sources) {
+ names = $$1
+ sources =
+
+ for(name, names) {
+ source = $${name}.cpp
+ exists($$source) {
+ sources += $$source
+ }
+ }
+ return($$sources)
+ }
+
# Input
!
! HEADERS = $$headers($$all_sources)
! SOURCES = $$sources($$all_sources)
!
LIBS += -L../testing/libcompbenchmarks/.libs -lcompbenchmarks
RESOURCES += icons/icons.qrc
|