diff options
Diffstat (limited to 'libkholidays/CMakeLists.txt')
-rw-r--r-- | libkholidays/CMakeLists.txt | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/libkholidays/CMakeLists.txt b/libkholidays/CMakeLists.txt new file mode 100644 index 000000000..59c1afa2a --- /dev/null +++ b/libkholidays/CMakeLists.txt @@ -0,0 +1,40 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +project( libkholidays ) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR} + ${CMAKE_SOURCE_DIR}/libkdepim + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### kholidays (shared) ######################## + +tde_add_library( kholidays SHARED AUTOMOC + SOURCES + kholidays.cpp scanholiday.c parseholiday.h parseholiday.c lunarphase.cpp + VERSION 1.0.0 + LINK kdecore-shared + DESTINATION ${LIB_INSTALL_DIR} +) + + +##### install import cmake modules ############### + +tde_install_export( ) |