~aleteoryx/muditaos

ref: fe61ede5ede43c50aafd6e9c64679e3a23e9b99f muditaos/module-services/service-fileindexer/CMakeLists.txt -rw-r--r-- 787 bytes
fe61ede5 — Maciej-Mudita [MOS-836] Fix for selecting SIM during onboarding 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
)