Blame view

src/ExternLib/Fix/CMakeLists.txt 381 Bytes
74a11471   Benjamin Renard   Add min, max, var...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

PROJECT(Fix)

set(LIBRARY_OUTPUT_PATH ${PLUGIN_OUTPUT_PATH}/Fix)

include_directories(
)

#Library configuration
file(
	GLOB_RECURSE
	source_files
	./*
)

ADD_LIBRARY( Fix SHARED ${source_files} )

target_link_libraries(
	Fix
)

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