Blame view

src/helpers/CMakeLists.txt 378 Bytes
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

PROJECT(helpers)

include_directories(
    ${Boost_INCLUDE_DIR}
    ${LOG4CXX_INCLUDE_DIR}
)

#Configuration de la librairie
file(
	GLOB_RECURSE
	source_files
	./*
)

ADD_LIBRARY( helpers SHARED ${source_files} )


target_link_libraries(
	helpers 
ab9d7e65   Benjamin Renard   Fix libraries loc...
21
22
	${Boost_LIBRARY_DIR}/libboost_system.so 
	${Boost_LIBRARY_DIR}/libboost_thread.so
c1f4db8e   Benjamin Renard   Add process to te...
23
	${Boost_LIBRARY_DIR}/libboost_regex.so
ab9d7e65   Benjamin Renard   Fix libraries loc...
24
	rt
fbe3c2bb   Benjamin Renard   First commit
25
)