CMakeLists.txt 335 B

1234567891011121314151617
  1. # -*- coding: utf-8; mode: cmake -*-
  2. # (c) Daniel Llorens - 2018-2019
  3. # here or in any of the subdirectories
  4. # CXXFLAGS=-O3 cmake .
  5. # VERBOSE=1 make -j7
  6. # VERBOSE=1 make -j7 test
  7. cmake_minimum_required (VERSION 3.5)
  8. project (ra-ra)
  9. foreach (dir test bench examples docs)
  10. add_subdirectory (${dir})
  11. endforeach ()
  12. enable_testing ()