CMakeLists.txt 480 B

12345678910111213141516171819202122
  1. #
  2. # Copyright (c) 2019 Mateusz Loskot <mateusz at loskot dot net>
  3. #
  4. # Distributed under the Boost Software License, Version 1.0.
  5. # (See accompanying file LICENSE_1_0.txt or copy at
  6. # http://www.boost.org/LICENSE_1_0.txt)
  7. #
  8. if(GIL_ENABLE_EXT_DYNAMIC_IMAGE)
  9. add_subdirectory(dynamic_image)
  10. endif()
  11. if(GIL_ENABLE_EXT_NUMERIC)
  12. add_subdirectory(numeric)
  13. endif()
  14. if(GIL_ENABLE_EXT_TOOLBOX)
  15. add_subdirectory(toolbox)
  16. endif()
  17. if(GIL_ENABLE_EXT_IO)
  18. add_subdirectory(io)
  19. endif()