###################################### cmake_test/asserts/target_has_property ###################################### .. module:: cmake_test/asserts/target_has_property .. function:: ct_assert_target_has_property(target property) Assert that a target has a property. If the given target name does not exist or is not a target, an :code:`ASSERTION_FAILED` exception will be thrown. :param target: The name of the target :type target: target :param property: The name of the property :type property: desc .. function:: ct_assert_target_does_not_have_property(target property) Assert that a target does not have a property. If the given target name does not exist or is not a target, an :code:`ASSERTIONFAILED` exception will be thrown. :param target: The name of the target :type target: target :param property: The name of the property :type property: desc