On 10/09/2015 10:06 AM, Kevin H. Hobbs wrote: > The ITK dashboard builds on bubbles, murron, and k450e all started > failing at the configure step on October 6. > > CMake Error at > Modules/ThirdParty/NIFTI/src/nifti/znzlib/CMakeLists.txt:18 (install): > install TARGETS given no LIBRARY DESTINATION for shared library target > "znz".
Kevin, thanks for reporting this promptly. Steve, this bisects to: cmMakefile: Move invokation to initialize snapshot. https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f716460e Here is a small test case: $ cat CMakeLists.txt cmake_minimum_required(VERSION 3.3) project(Subdir NONE) subdirs(dir) set(variable value) $ cat dir/CMakeLists.txt message("variable='${variable}'") Prior to this change the variable would have the right value in the subdirectory. Now it is not set. Please take a look. Thanks, -Brad -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitware offers various services to support the CMake community. For more information on each offering, please visit: CMake Support: http://cmake.org/cmake/help/support.html CMake Consulting: http://cmake.org/cmake/help/consulting.html CMake Training Courses: http://cmake.org/cmake/help/training.html Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/cmake-developers