~aleteoryx/muditaos

ref: a405cad694b867fcd2498984830bd97d4b9bde2f muditaos/module-services/service-fileindexer/CMakeLists.txt -rw-r--r-- 876 bytes
a405cad6Aleteoryx trim readme 7 days 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
36
add_library( service-fileindexer STATIC )

target_sources( service-fileindexer
	PRIVATE
        Common.hpp
        InotifyHandler.cpp
        ServiceFileIndexer.cpp
        StartupIndexer.cpp
    PUBLIC
        include/service-fileindexer/ServiceFileIndexerName.hpp
        include/service-fileindexer/InotifyHandler.hpp
        include/service-fileindexer/ServiceFileIndexer.hpp
        include/service-fileindexer/StartupIndexer.hpp
		include/service-fileindexer/ServiceFileIndexerDependencies.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
)