CMakeLists.txt 618 B

1234567891011121314151617181920212223
  1. # -*- coding: utf-8; mode: cmake -*-
  2. # Top cmake file for ra-ra
  3. # (c) Daniel Llorens - 2018-2019
  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. # here or in any of the subdirectories
  9. # CXXFLAGS=-O3 cmake .
  10. # VERBOSE=1 make -j7
  11. # VERBOSE=1 make -j7 test
  12. cmake_minimum_required (VERSION 3.5)
  13. project (ra-ra)
  14. foreach (dir test bench examples docs)
  15. add_subdirectory (${dir})
  16. endforeach ()
  17. enable_testing ()