set of headers

This commit is contained in:
Erik Frojdh 2018-01-29 16:52:17 +01:00
parent 7d48c2f8ee
commit 66e0049ded

View File

@ -58,11 +58,19 @@ add_library(slsDetectorShared SHARED
${SOURCES} ${SOURCES}
${HEADERS} ${HEADERS}
) )
set(PUBLICHEADERS
commonFiles/sls_detector_defs.h
commonFiles/sls_detector_funcs.h
slsDetector/slsDetectorUtils.h
slsDetector/slsDetector.h
slsDetector/slsDetectorActions.h
)
set_target_properties(slsDetectorShared PROPERTIES set_target_properties(slsDetectorShared PROPERTIES
LIBRARY_OUTPUT_NAME SlsDetector LIBRARY_OUTPUT_NAME SlsDetector
LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin
PUBLIC_HEADER "commonFiles/sls_detector_defs.h;commonFiles/sls_detector_funcs.h;slsDetector/slsDetectorUtils.h;slsDetector/slsDetector.h; PUBLIC_HEADER "${PUBLICHEADERS}"
slsDetector/slsDetectorActions.h"
) )