FindKDE3¶
尋找 KDE3 的包含檔和函式庫目錄、KDE 前處理器,並定義一些巨集
此模組定義以下變數
KDE3_DEFINITIONS
編譯 KDE 軟體所需的編譯器定義
KDE3_INCLUDE_DIR
KDE 的包含檔目錄
KDE3_INCLUDE_DIRS
KDE 和 Qt 的包含檔目錄,用於 include_directories()
KDE3_LIB_DIR
KDE 函式庫安裝所在的目錄,用於 link_directories()
QT_AND_KDECORE_LIBS
此變數包含 Qt 和 kdecore 函式庫
KDE3_DCOPIDL_EXECUTABLE
dcopidl 執行檔
KDE3_DCOPIDL2CPP_EXECUTABLE
dcopidl2cpp 執行檔
KDE3_KCFGC_EXECUTABLE
kconfig_compiler 執行檔
KDE3_FOUND
如果以上所有項目都已找到,則設定為 TRUE
提供以下使用者可調整的選項
KDE3_BUILD_TESTS
啟用此選項以建置 KDE 測試案例
它還會加入以下巨集(來自 KDE3Macros.cmake
)SRCS_VAR
永遠是包含應用程式或函式庫原始檔列表的變數。
KDE3_AUTOMOC(file1 ... fileN)
Call this if you want to have automatic moc file handling.
This means if you include "foo.moc" in the source file foo.cpp
a moc file for the header foo.h will be created automatically.
You can set the property SKIP_AUTOMAKE using set_source_files_properties()
to exclude some files in the list from being processed.
KDE3_ADD_MOC_FILES(SRCS_VAR file1 ... fileN )
If you don't use the KDE3_AUTOMOC() macro, for the files
listed here moc files will be created (named "foo.moc.cpp")
KDE3_ADD_DCOP_SKELS(SRCS_VAR header1.h ... headerN.h )
Use this to generate DCOP skeletions from the listed headers.
KDE3_ADD_DCOP_STUBS(SRCS_VAR header1.h ... headerN.h )
Use this to generate DCOP stubs from the listed headers.
KDE3_ADD_UI_FILES(SRCS_VAR file1.ui ... fileN.ui )
Use this to add the Qt designer ui files to your application/library.
KDE3_ADD_KCFG_FILES(SRCS_VAR file1.kcfgc ... fileN.kcfgc )
Use this to add KDE kconfig compiler files to your application/library.
KDE3_INSTALL_LIBTOOL_FILE(target)
This will create and install a simple libtool file for the given target.
KDE3_ADD_EXECUTABLE(name file1 ... fileN )
Currently identical to add_executable(), may provide some advanced
features in the future.
KDE3_ADD_KPART(name [WITH_PREFIX] file1 ... fileN )
Create a KDE plugin (KPart, kioslave, etc.) from the given source files.
If WITH_PREFIX is given, the resulting plugin will have the prefix "lib",
otherwise it won't.
It creates and installs an appropriate libtool la-file.
KDE3_ADD_KDEINIT_EXECUTABLE(name file1 ... fileN )
Create a KDE application in the form of a module loadable via kdeinit.
A library named kdeinit_<name> will be created and a small executable
which links to it.
不再支援用於啟用all-in-one 編譯的 KDE3_ENABLE_FINAL 選項。
作者:Alexander Neundorf <neundorf@kde.org>