~aleteoryx/muditaos

ref: b355d5ce007a02f551f9d897f0dcbc20b76464f2 muditaos/module-services/service-fileindexer/CMakeLists.txt -rw-r--r-- 686 bytes
b355d5ce — Marcin Smoczyński [BH-733] Cleanup target dependencies 4 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
project(service-fileindexer VERSION 1.0
	DESCRIPTION "File indexer service ")

add_library(${PROJECT_NAME} STATIC ${SOURCES})

# Board specific compilation definitions,options,include directories and features
target_compile_definitions(${PROJECT_NAME} PUBLIC ${PROJECT_CONFIG_DEFINITIONS})
target_compile_definitions(${PROJECT_NAME} PUBLIC ${PROJECT_TARGET})
target_include_directories(${PROJECT_NAME} PUBLIC ${PROJECT_INCLUDES})

target_sources( ${PROJECT_NAME}
	PRIVATE
	"ServiceFileIndexer.cpp"
	"StartupIndexer.cpp"
	"notesIndexer.cpp"
)


target_link_libraries(${PROJECT_NAME} 
	PUBLIC
		module-bsp 
		module-os 
		module-utils 
		module-vfs 
		module-sys 
		tag
	PRIVATE
		utf8
)