~aleteoryx/muditaos

ref: d2bf42d411b21efd7d79614bb544959904d01082 muditaos/module-services/service-fileindexer/CMakeLists.txt -rw-r--r-- 798 bytes
d2bf42d4 — Adam Wulkiewicz [BH-1655] Fix memory leaks in clock faces and shortcuts 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
add_library( service-fileindexer STATIC )

target_sources( service-fileindexer
	PRIVATE
        Common.hpp
        InotifyHandler.cpp
        ServiceFileIndexer.cpp
        StartupIndexer.cpp
    PUBLIC
        include/service-fileindexer/Constants.hpp
        include/service-fileindexer/InotifyHandler.hpp
        include/service-fileindexer/ServiceFileIndexer.hpp
        include/service-fileindexer/StartupIndexer.hpp
)

target_include_directories( service-fileindexer
    PRIVATE
        $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
    
    PUBLIC
        $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>/include/
)

target_link_libraries(service-fileindexer 
	PRIVATE
		utf8
        tagsfetcher
        module-bsp 
		module-os 
		module-utils 
		module-vfs 
		module-sys
		module-db
		tag
)