diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-01-28 19:34:00 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-01-28 19:34:09 +0900 |
commit | 37a6812fbebc918b17506cf6d51e3556c8cdc609 (patch) | |
tree | 8e34bb30f7642c9a6cac9fdaf767e623bd73abd1 /ksvg | |
parent | 8d6af931c4039ff990e58d3cd8d248b764bc1a99 (diff) | |
download | tdegraphics-37a6812fbebc918b17506cf6d51e3556c8cdc609.tar.gz tdegraphics-37a6812fbebc918b17506cf6d51e3556c8cdc609.zip |
Removed setting of CXX_FEATURES at module level since CXX_FEATURES are now enabled at TDE project level.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ksvg')
-rw-r--r-- | ksvg/CMakeLists.txt | 1 | ||||
-rw-r--r-- | ksvg/core/CMakeLists.txt | 1 | ||||
-rw-r--r-- | ksvg/ecma/CMakeLists.txt | 1 | ||||
-rw-r--r-- | ksvg/impl/CMakeLists.txt | 1 | ||||
-rw-r--r-- | ksvg/impl/libs/libtext2path/src/CMakeLists.txt | 2 |
5 files changed, 0 insertions, 6 deletions
diff --git a/ksvg/CMakeLists.txt b/ksvg/CMakeLists.txt index e3fd997e..534cf56e 100644 --- a/ksvg/CMakeLists.txt +++ b/ksvg/CMakeLists.txt @@ -34,7 +34,6 @@ configure_file( ${TDE_CMAKE_TEMPLATES}/tde_dummy_cpp.cmake dummy.cpp COPYONLY ) tde_add_library( ksvg SHARED SOURCES dummy.cpp - CXX_FEATURES cxx_nullptr VERSION 0.0.1 EMBED ksvgdom-static ksvgdomimpl-static ksvgcore-static ksvgecma-static diff --git a/ksvg/core/CMakeLists.txt b/ksvg/core/CMakeLists.txt index db2ac2be..3818acaf 100644 --- a/ksvg/core/CMakeLists.txt +++ b/ksvg/core/CMakeLists.txt @@ -48,5 +48,4 @@ tde_add_library( ksvgcore STATIC_PIC AUTOMOC SOURCES KSVGLoader.cpp KSVGCanvas.cpp KSVGReader.cpp KSVGTextChunk.cpp CanvasFactory.cpp CanvasItems.cpp KSVGHelper.cpp DocumentFactory.cpp - CXX_FEATURES cxx_nullptr ) diff --git a/ksvg/ecma/CMakeLists.txt b/ksvg/ecma/CMakeLists.txt index 8aa5c709..d70a02c6 100644 --- a/ksvg/ecma/CMakeLists.txt +++ b/ksvg/ecma/CMakeLists.txt @@ -31,5 +31,4 @@ tde_add_library( ksvgecma STATIC_PIC AUTOMOC SOURCES ksvg_scriptinterpreter.cpp ksvg_ecma.cpp ksvg_helper.cpp ksvg_ecmaeventlistener.cpp ksvg_window.cpp - CXX_FEATURES cxx_nullptr ) diff --git a/ksvg/impl/CMakeLists.txt b/ksvg/impl/CMakeLists.txt index b8bfe01c..82980a01 100644 --- a/ksvg/impl/CMakeLists.txt +++ b/ksvg/impl/CMakeLists.txt @@ -89,6 +89,5 @@ tde_add_library( ksvgdomimpl STATIC_PIC AUTOMOC SVGFontFaceUriElementImpl.cpp SVGDefinitionSrcElementImpl.cpp SVGHKernElementImpl.cpp SVGVKernElementImpl.cpp SVGMetadataElementImpl.cpp SVGForeignObjectElementImpl.cpp svgpathparser.cpp - CXX_FEATURES cxx_nullptr LINK kjs-shared ) diff --git a/ksvg/impl/libs/libtext2path/src/CMakeLists.txt b/ksvg/impl/libs/libtext2path/src/CMakeLists.txt index a6227857..29ab129e 100644 --- a/ksvg/impl/libs/libtext2path/src/CMakeLists.txt +++ b/ksvg/impl/libs/libtext2path/src/CMakeLists.txt @@ -35,7 +35,6 @@ tde_add_library( text2path STATIC_PIC SOURCES Affine.cpp Rectangle.cpp Font.cpp Glyph.cpp GlyphTracer.cpp Converter.cpp QtUnicode.cpp - CXX_FEATURES cxx_nullptr ) ##### text2path (shared) ######################## @@ -45,7 +44,6 @@ tde_add_library( text2path SHARED Affine.cpp Rectangle.cpp Font.cpp Glyph.cpp GlyphTracer.cpp Converter.cpp QtUnicode.cpp VERSION 0.0.0 - CXX_FEATURES cxx_nullptr LINK ${FREETYPE_LIBRARIES} ${FRIBIDI_LIBRARIES} ${FONTCONFIG_LIBRARIES} DESTINATION ${LIB_INSTALL_DIR} ) |