Blame view

src/ExternLib/els_calculate/CMakeLists.txt 432 Bytes
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

PROJECT(els_calculate)

set(LIBRARY_OUTPUT_PATH ${PLUGIN_OUTPUT_PATH}/els_calculate)

include_directories(
)

#Library configuration
file(
	GLOB_RECURSE
	source_files
	./*
)

35de3ffa   Elena.Budnik   mexvex_els
16
17
18
19
20
# ADD_LIBRARY( els_calculate SHARED ${source_files} )
# 
# 	target_link_libraries(
# 	els_calculate
# )
fbe3c2bb   Benjamin Renard   First commit
21
22
23

FILE( GLOB_RECURSE PROJ_HEADERS *.hh )
INSTALL(FILES ${PROJ_HEADERS} DESTINATION ${LIBRARY_OUTPUT_PATH}  PERMISSIONS OWNER_READ GROUP_READ WORLD_READ)