(self)
| 34 | 'sources += [ "source1.h", "source1.cc", ]') |
| 35 | |
| 36 | def test_source_remove(self): |
| 37 | self._CompileAndCheck( |
| 38 | f'list(REMOVE_ITEM {self.CMAKE_TARGET_SOURCES} "source1.h" "source1.cc")', |
| 39 | 'sources -= [ "source1.h", "source1.cc", ]') |
| 40 | |
| 41 | def test_equal(self): |
| 42 | self._CompileExpressionAndCheck('"${CURRENT_CPU}" STREQUAL "x64"', |
nothing calls this directly
no test coverage detected