Don't install headers on OS X

This commit is contained in:
Daniel Molkentin 2013-12-09 20:39:55 +01:00
parent f8478ac27b
commit 2cf7ba91c1
1 changed files with 10 additions and 14 deletions

View File

@ -145,25 +145,21 @@ set(owncloudsync_HEADERS
mirall/syncresult.h
)
INSTALL(
FILES
${owncloudsync_HEADERS}
DESTINATION
${INCLUDE_INSTALL_DIR}/owncloudsync/mirall
)
set(creds_HEADERS
creds/abstractcredentials.h
creds/httpcredentials.h
)
INSTALL(
FILES
${creds_HEADERS}
DESTINATION
${INCLUDE_INSTALL_DIR}/owncloudsync/creds
)
IF (NOT APPLE)
INSTALL(
FILES ${owncloudsync_HEADERS}
DESTINATION ${INCLUDE_INSTALL_DIR}/owncloudsync/mirall
)
INSTALL(
FILES ${creds_HEADERS}
DESTINATION ${INCLUDE_INSTALL_DIR}/owncloudsync/creds
)
ENDIF(NOT APPLE)
IF( DEFINED CSYNC_BUILD_PATH )
SET(HTTPBF_LIBRARY ${CSYNC_BUILD_PATH}/src/httpbf/libhttpbf.a)