Changes between Initial Version and Version 1 of CMakeBoostAdditionalTestDependencies


Ignore:
Timestamp:
Nov 6, 2008, 6:11:51 PM (14 years ago)
Author:
imikejackson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CMakeBoostAdditionalTestDependencies

    v1 v1  
     1= CMake Macro Reference: `boost_additional_test_dependencies` =
     2
     3The `boost_additional_test_dependencies` macro adds additional include directories based on the dependencies of the library being tested 'libname' and all of its dependencies.
     4
     5{{{
     6boost_additional_test_dependencies(libname
     7                        BOOST_DEPENDS libdepend1 libdepend2 ...)
     8}}}
     9
     10`libname` is the name of the boost library being tested. (signals)
     11
     12There is mandatory argument to the macro:
     13
     14`BOOST_DEPENDS`: The list of the extra boost libraries that the test suite will
     15depend on. You do NOT have to list those libraries already listed by the
     16module.cmake file as these will be used.
     17
     18== Example ==
     19
     20The following invocation of the `boost_additional_test_dependencies` macro is taken from the signals library.
     21{{{
     22  boost_additional_test_dependencies(signals BOOST_DEPENDS test optional)
     23}}}
     24
     25== Where Defined ==
     26This macro is defined in the Boost Testing module in [http://svn.boost.org/svn/boost/trunk/tools/build/CMake/BoostTesting.cmake
     27