Skip to content
Snippets Groups Projects
  1. Mar 16, 2015
  2. Dec 12, 2014
  3. Dec 28, 2013
  4. Oct 29, 2013
    • Dominic Kempf's avatar
      [Cmake] Prevent Headercheck from polluting the Cache · fd4572dd
      Dominic Kempf authored
      Cmake by default added a dependeny variable for each headercheck
      target. Given the amount of such targets and the fact, that these
      dependencies should not be changed by the user, this is unwanted
      behaviour. The patch fixes this by removing the variable from the
      cache.
      fd4572dd
  5. Oct 24, 2013
  6. Oct 09, 2013
    • Markus Blatt's avatar
      [cmake][bugfix] Exclude hidden headers from header checks. · 0a5ba4f0
      Markus Blatt authored
      Previously hidden unix files were included in the headercheck.
      Unfortunately  emacs(server) tends to produces files such as
      .#<headername>. This broke the constructed Makefiles. This patch
      excludes such files from the list and fixes the issue.
      0a5ba4f0
  7. Sep 18, 2013
    • Dominic Kempf's avatar
      Implements an analogon to autotools "make headercheck" and adds package found summaries · b3a125b0
      Dominic Kempf authored and Markus Blatt's avatar Markus Blatt committed
      Exclusion from the headercheck can be achieved in a CMakeLists.txt
      file via the following macros:
      
      exclude_from_headercheck(list...)
      exclude_dir_from_headercheck()
      exclude_all_but_from_headercheck(list...)
      
      When not excluded, all headers matching dune/*.hh or src/*.hh
      will be checked.
      
      Unlike with autotools, make headercheck can only be called on the
      toplevel module directory and then run on all module headers. In
      contrast to autotools, CMake will cache the results and rerun only
      checks on changed headers.
      b3a125b0
Loading