generic: misc cleanups

This commit is contained in:
Ivailo Monev 2015-09-25 01:45:51 +00:00
parent 7e6bd222da
commit e31da1d693
3 changed files with 5 additions and 8 deletions

View file

@ -147,10 +147,6 @@
# KDE4_SERIALIZE_TOOL - wrapper to serialize potentially resource-intensive commands during # KDE4_SERIALIZE_TOOL - wrapper to serialize potentially resource-intensive commands during
# parallel builds (set to 'icecc' when using icecream) # parallel builds (set to 'icecc' when using icecream)
# #
# It also adds the following macros and functions (from KDE4Macros.cmake)
# KDE4_ADD_UI_FILES (SRCS_VAR file1.ui ... fileN.ui)
# Use this to add Qt designer ui files to your application/library.
#
# KDE4_ADD_KCFG_FILES (SRCS_VAR [GENERATE_MOC] [USE_RELATIVE_PATH] file1.kcfgc ... fileN.kcfgc) # KDE4_ADD_KCFG_FILES (SRCS_VAR [GENERATE_MOC] [USE_RELATIVE_PATH] file1.kcfgc ... fileN.kcfgc)
# Use this to add KDE config compiler files to your application/library. # Use this to add KDE config compiler files to your application/library.
# Use optional GENERATE_MOC to generate moc if you use signals in your kcfg files. # Use optional GENERATE_MOC to generate moc if you use signals in your kcfg files.
@ -171,6 +167,9 @@
# KDESRCDIR is set to the source directory of the test, this can be used # KDESRCDIR is set to the source directory of the test, this can be used
# with KGlobal::dirs()->addResourceDir( "data", KDESRCDIR ) # with KGlobal::dirs()->addResourceDir( "data", KDESRCDIR )
# #
# KDE4_ADD_MANUAL_TEST (testname file1 ... fileN)
# same as KDE_ADD_TEST() except that the test is not run on `make test`
#
# KDE4_INSTALL_ICONS( path theme) # KDE4_INSTALL_ICONS( path theme)
# Installs all png and svgz files in the current directory to the icon # Installs all png and svgz files in the current directory to the icon
# directory given in path, in the subdirectory for the given icon theme. # directory given in path, in the subdirectory for the given icon theme.

View file

@ -65,9 +65,9 @@ set(kdecore_OPTIONAL_LIBS)
add_definitions(-DQT_NO_CAST_FROM_ASCII) add_definitions(-DQT_NO_CAST_FROM_ASCII)
# Needed for the kdatetime test in release mode # Needed for the kdatetime test in release mode
if(KDE4_BUILD_TESTS) if(ENABLE_TESTING)
add_definitions(-DCOMPILING_TESTS) add_definitions(-DCOMPILING_TESTS)
endif(KDE4_BUILD_TESTS) endif(ENABLE_TESTING)
# compile bzip2 support if available # compile bzip2 support if available
if(BZIP2_FOUND) if(BZIP2_FOUND)

View file

@ -61,8 +61,6 @@ class QWidget;
* set(filetypethumbnail_SRCS filetypethumbnail.cpp) * set(filetypethumbnail_SRCS filetypethumbnail.cpp)
* *
* *
* kde4_add_ui_files(filetypethumbnail_SRCS config.ui )
*
* kde4_add_plugin(filetypethumbnail ${filetypethumbnail_SRCS}) * kde4_add_plugin(filetypethumbnail ${filetypethumbnail_SRCS})
* target_link_libraries(filetypethumbnail ${KDE4_KIO_LIBS}) * target_link_libraries(filetypethumbnail ${KDE4_KIO_LIBS})
* *