Make maxutils a standalone library

The only way to cleanly separate the maxutils library from the MaxScale
CMake project is to make it a standalone CMake project. With the help of
ExternalProject, it should be relatively easy to use.
This commit is contained in:
Markus Mäkelä
2018-06-19 14:23:48 +03:00
parent b96228f95c
commit 7254a7c525
8 changed files with 33 additions and 6 deletions

View File

@ -0,0 +1,10 @@
set(TYPES "*.h" "*.hh")
foreach(type ${TYPES})
file(GLOB HEADERS ${type})
foreach(var ${HEADERS})
get_filename_component(header ${var} NAME)
install(FILES ${header} DESTINATION include/maxbase)
endforeach()
endforeach()