[Kde-bindings] KDE/kdebindings/smoke
Richard Dale
Richard_Dale at tipitina.demon.co.uk
Thu Nov 19 11:46:44 UTC 2009
SVN commit 1051455 by rdale:
* Added qtsvg and qtxml smoke libs. However, the generator currently seg faults
when generating the qtxml lib
CCMAIL: kde-bindings at kde.org
M +12 -0 CMakeLists.txt
A qtsvg (directory)
A qtsvg/CMakeLists.txt
A qtsvg/config.xml.cmake
A qtsvg/qtsvg_includes.h [License: Trivial file.]
A qtsvg/smokeconfig.xml
A qtsvg_smoke.h [License: UNKNOWN]
A qtxml (directory)
A qtxml/CMakeLists.txt
A qtxml/config.xml.cmake
A qtxml/qtxml_includes.h [License: Trivial file.]
A qtxml/smokeconfig.xml
A qtxml_smoke.h [License: UNKNOWN]
--- trunk/KDE/kdebindings/smoke/CMakeLists.txt #1051454:1051455
@@ -3,6 +3,8 @@
OPTION(ENABLE_QTNETWORK_SMOKE "build QtNetworkSmoke" ON)
OPTION(ENABLE_QTDBUS_SMOKE "build QtDBusSmoke" ON)
OPTION(ENABLE_QTGUI_SMOKE "build QtGuiSmoke" ON)
+OPTION(ENABLE_QTSVG_SMOKE "build QtSvgSmoke" ON)
+OPTION(ENABLE_QTXML_SMOKE "build QtXmlSmoke" ON)
OPTION(ENABLE_QTOPENGL_SMOKE "build QtOpenGLSmoke" ON)
OPTION(ENABLE_QTWEBKIT_SMOKE "build QtWebKitSmoke" ON)
OPTION(ENABLE_QTSCRIPT_SMOKE "build QtScriptSmoke" ON)
@@ -45,6 +47,16 @@
set(SMOKE_ENABLED "${SMOKE_ENABLED}, QtGui")
endif(ENABLE_QTGUI_SMOKE)
+ if(ENABLE_QTSVG_SMOKE)
+ add_subdirectory(qtsvg)
+ set(SMOKE_ENABLED "${SMOKE_ENABLED}, QtSvg")
+ endif(ENABLE_QTSVG_SMOKE)
+
+ if(ENABLE_QTXML_SMOKE)
+ add_subdirectory(qtxml)
+ set(SMOKE_ENABLED "${SMOKE_ENABLED}, QtXml")
+ endif(ENABLE_QTXML_SMOKE)
+
if(ENABLE_QTOPENGL_SMOKE)
add_subdirectory(qtopengl)
set(SMOKE_ENABLED "${SMOKE_ENABLED}, QtOpenGL")
More information about the Kde-bindings
mailing list