~aleteoryx/muditaos

ref: 8b2391f7fcdead94b1dd3a08f806b754ac7af79f muditaos/module-services/service-fileindexer/CMakeLists.txt -rw-r--r-- 787 bytes
8b2391f7 — Pawel Olejniczak [MOS-244] Change label title above favorite contacts 3 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
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 
		tag
)