cmake: add include headers to libnfs

This change adds the main include dir to the include directories for
cmake such that when integrating libnfs with another project, this dir
is added to the include list.
libnfs-4.0.0-vitalif
Anna Lyons 2018-06-25 09:58:31 +10:00
parent 6a33413b0f
commit ae6e708bf9
1 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@ set(SOURCES init.c
add_library(nfs ${SOURCES})
target_link_libraries(nfs PUBLIC ${core_DEPENDS})
target_include_directories(nfs PUBLIC ../include)
set_target_properties(nfs PROPERTIES
VERSION ${PROJECT_VERSION}
SOVERSION ${SOVERSION})