CMakeLists.txt 555 B

1234567891011121314151617181920
  1. # -*- coding: utf-8; mode: cmake -*-
  2. # main CMakeLists.txt
  3. # (c) lloda@sarc.name 2023
  4. # This library is free software; you can redistribute it and/or modify it under
  5. # the terms of the GNU Lesser General Public License as published by the Free
  6. # Software Foundation; either version 3 of the License, or (at your option) any
  7. # later version.
  8. cmake_minimum_required (VERSION 3.5)
  9. project (newra)
  10. set (CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/config)
  11. foreach (dir test docs)
  12. add_subdirectory (${dir})
  13. endforeach ()
  14. enable_testing ()