diff options
author | gregory guy <[email protected]> | 2020-07-04 18:35:40 +0200 |
---|---|---|
committer | gregory guy <[email protected]> | 2020-07-05 16:50:07 +0200 |
commit | 544a219d602129cf446659b2f56aeabee69d0182 (patch) | |
tree | 5a2a565a88b89afbdd67dd8ba74dc72446b9d968 /dominoConfig | |
parent | 23c0ecabcb79e123a01b1f0d7e6fc7f02e0daf4e (diff) | |
download | tde-style-domino-544a219d602129cf446659b2f56aeabee69d0182.tar.gz tde-style-domino-544a219d602129cf446659b2f56aeabee69d0182.zip |
Conversion to the cmake building system.
Signed-off-by: gregory guy <[email protected]>
Diffstat (limited to 'dominoConfig')
-rw-r--r-- | dominoConfig/CMakeLists.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/dominoConfig/CMakeLists.txt b/dominoConfig/CMakeLists.txt new file mode 100644 index 0000000..38ce752 --- /dev/null +++ b/dominoConfig/CMakeLists.txt @@ -0,0 +1,27 @@ +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} + ${FREETYPE_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${TDE_LIBRARY_DIRS} +) + + +##### tdestyle_domino_config (kpart) + +tde_add_kpart( tdestyle_domino_config AUTOMOC + + SOURCES + dominoconf.cpp + LINK + tdeio-shared + domino_style-static + + DESTINATION ${PLUGIN_INSTALL_DIR} +) |