CMakeLists.txt
440 Bytes
PROJECT(elongation)
set(LIBRARY_OUTPUT_PATH ${PLUGIN_OUTPUT_PATH}/elongation)
include_directories(
../common
)
#Library configuration
file(
GLOB_RECURSE
source_files
./*
../common/*
)
ADD_LIBRARY( elongation SHARED ${source_files} )
target_link_libraries(
elongation
)
FILE( GLOB_RECURSE PROJ_HEADERS *.hh )
INSTALL(FILES ${PROJ_HEADERS} DESTINATION ${LIBRARY_OUTPUT_PATH} PERMISSIONS OWNER_READ GROUP_READ WORLD_READ)