Fix devel package

The moving of the header files to include/maxscale/ broke the devel
package.
This commit is contained in:
Markus Mäkelä 2017-01-16 10:33:11 +02:00
parent cbdab48237
commit 666d12f5fb
4 changed files with 3 additions and 5 deletions

View File

@ -190,6 +190,7 @@ endif()
add_subdirectory(plugins)
add_subdirectory(query_classifier)
add_subdirectory(server)
add_subdirectory(include/maxscale)
if(NOT WITHOUT_MAXADMIN)
add_subdirectory(client)
endif()

View File

@ -1,4 +1,4 @@
file(GLOB HEADERS "*.h")
file(GLOB HEADERS "*.h*")
foreach(var ${HEADERS})
get_filename_component(header ${var} NAME)
install_header(${header} devel)

View File

@ -1,7 +1,5 @@
file(GLOB HEADERS "*.h")
file(GLOB HEADERS "*.h*")
foreach(var ${HEADERS})
get_filename_component(header ${var} NAME)
install_header(${header} devel)
endforeach()
add_subdirectory(maxscale)

View File

@ -4,4 +4,3 @@ include_directories(${MARIADB_CONNECTOR_INCLUDE_DIR})
add_subdirectory(core)
add_subdirectory(modules)
add_subdirectory(inih)
add_subdirectory(include)