Recent change to vxl_config.h installation location?

Hi all,

ITK master was working for me about a week ago. Now I’ve updated and rebuilt and it seems that vxl_config.h is no longer installed in include/ITK-5.0 but rather in include/vxl/core.

I assume that’s a bug, yes?

Thanks,

Sean

I was just working on it. This is what I am currently testing:

--- a/Modules/ThirdParty/VNL/src/vxl/core/CMakeLists.txt
+++ b/Modules/ThirdParty/VNL/src/vxl/core/CMakeLists.txt
@@ -9,12 +9,6 @@ doxygen_add_package(core-L2 "Level-2 Vision Libraries")
 doxygen_add_package(core-L2E "Level-2 Vision Libraries (Experimental)")
 doxygen_add_package(core-test "Test Framework")
 
-#
-# Do platform-specific configuration.
-# configure files
-#
-vxl_configure_file(${CMAKE_CURRENT_LIST_DIR}/vxl_config.h.in ${PROJECT_BINARY_DIR}/vxl_config.h include/vxl/core)
-include_directories(${PROJECT_BINARY_DIR})
 
 set(global_sources
  vxl_copyright.h
@@ -28,6 +22,13 @@ else()
 endif()
 INSTALL_NOBASE_HEADER_FILES(${prefix} ${global_sources})
 
+#
+# Do platform-specific configuration.
+# configure files
+#
+vxl_configure_file(${CMAKE_CURRENT_LIST_DIR}/vxl_config.h.in ${PROJECT_BINARY_DIR}/vxl_config.h ${prefix})
+include_directories(${PROJECT_BINARY_DIR})
+
 if(BUILD_CORE_UTILITIES)
   # POSIX layer
   add_subdirectory(vpl)

Thank seemed to work. So I have proposed the patch:
http://review.source.kitware.com/#/c/23126/1