Warning, /pim/messagelib/messagecomposer/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # SPDX-License-Identifier: CC0-1.0
0002 # SPDX-FileCopyrightText: none
0003 
0004 
0005 find_package(Inotify)
0006 set_package_properties(Inotify PROPERTIES
0007     PURPOSE "Filesystem alteration notifications using inotify")
0008 if(Inotify_FOUND)
0009     set(HAVE_SYS_INOTIFY_H 1)
0010 else()
0011     set(HAVE_SYS_INOTIFY_H 0)
0012 endif()
0013 
0014 configure_file(config-messagecomposer.h.in ${CMAKE_CURRENT_BINARY_DIR}/src/config-messagecomposer.h)
0015 add_subdirectory(src)
0016 if (BUILD_TESTING)
0017     add_subdirectory(autotests)
0018     add_subdirectory(tests)
0019 endif()