Skip to content
Snippets Groups Projects
  1. Jan 27, 2020
  2. Jan 08, 2020
  3. Oct 14, 2019
    • Jens Georg's avatar
      Resolve cmake targets in the config scripts · c2027f8f
      Jens Georg authored
      THis is necessary for newer Boost (1.71) which puts the exported targets
      in Boost_LIBRARIES. If we export that verbatim it causes link issues on
      projects using the config scripts from Make
      c2027f8f
  4. Sep 27, 2019
  5. Sep 25, 2019
  6. Sep 24, 2019
  7. May 22, 2019
  8. May 16, 2019
  9. Apr 29, 2019
  10. Mar 22, 2019
  11. Mar 13, 2019
  12. Mar 07, 2019
    • vargheseg's avatar
      Make doxygen pick up markdown. · 1a5e4c6b
      vargheseg authored
      '*.md' files put into the projects doc directory will be picked as part of
      the documentation. '*.md' files in other locations of the source tree will
      be ignored.
      1a5e4c6b
  13. Mar 04, 2019
  14. Feb 20, 2019
    • vargheseg's avatar
      Bugfix: · bd0bfc3a
      vargheseg authored
      enclose CMAKE_BUILD_TYPE in quotes; this transforms it into an wmpty
      string and the string command wont complain that its missing an argument
      when CMAKE_BUILD_TYPE is not set.
      bd0bfc3a
  15. Feb 18, 2019
  16. Feb 14, 2019
  17. Feb 05, 2019
  18. Nov 26, 2018
  19. Nov 19, 2018
    • vargheseg's avatar
      register_tests now takes working directory. · 13568613
      vargheseg authored
      usage:
      register_tests(SOURCES
                       ${list_of_source_files}
                       "test_src.cc"
                       ${concatenated_string_of_source_files}
                     NAMESPACE
                       "test_namespace"
                     LINK_LIBRARIES
                       ${list_of_targets}
                     INCLUDE_DIRECTORIES
                       ${list_of_include_directories}
                     COMPILE_OPTIONS
                       ${list_of_compile_options}
                     WORKING_DIRECTORY
                       ${ctest_working_directory})
      13568613
  20. Nov 12, 2018
  21. Nov 08, 2018
    • vargheseg's avatar
      Merge pull request #4 from vargheseg/master · 4bc4a0f0
      vargheseg authored
      Introduced cmake module registerTests:
      Unverified
      4bc4a0f0
    • vargheseg's avatar
      revised option names: · af46ca24
      vargheseg authored
      new scheme:
      register_tests(SOURCES
                       ${list_of_source_files}
                       "test_src.cc"
                       ${concatenated_string_of_source_files}
                     NAMESPACE
                       "test_namespace"
                     LINK_LIBRARIES
                       ${list_of_targets}
                     INCLUDE_DIRECTORIES
                       ${list_of_include_directories}
                     COMPILE_OPTIONS
                       ${list_of_compile_options})
      af46ca24
    • vargheseg's avatar
      Introduced cmake module registerTests: · c50b5abb
      vargheseg authored
      usage:
      register_tests(SOURCES
                       ${list_of_source_files}
                       "test_src.cc"
                       ${concatenated_string_of_source_files}
                     NAMESPACE
                       "test_namespace"
                     DEPENDS
                       ${list_of_targets}
                     INCLUDES
                       ${list_of_include_directories}
                     COMPILE_OPTIONS
                       ${list_of_compile_options})
      
      Function registers tests defined as a list of souce files.  Test defined
      by file source_name.cc in the SOURCES list is registered under the name
        test_namespace.source_name
      
      Provided list of dependent targets and include directories are used for
      test executables as PRIVATE dependencies during compilation.
      
      Function implicitly adds a dependency on the boost unit test framework
      to each generated test executable.
      c50b5abb
  22. Oct 08, 2018
  23. Oct 04, 2018
  24. Oct 01, 2018
  25. Aug 30, 2018
Loading