Changeset View
Changeset View
Standalone View
Standalone View
build_files/cmake/macros.cmake
| Show First 20 Lines • Show All 1,333 Lines • ▼ Show 20 Lines | |||||
| macro(without_system_libs_end) | macro(without_system_libs_end) | ||||
| unset(CMAKE_IGNORE_PATH) | unset(CMAKE_IGNORE_PATH) | ||||
| if(APPLE) | if(APPLE) | ||||
| # FIRST is the default. | # FIRST is the default. | ||||
| set(CMAKE_FIND_FRAMEWORK FIRST) | set(CMAKE_FIND_FRAMEWORK FIRST) | ||||
| endif() | endif() | ||||
| endmacro() | endmacro() | ||||
| macro(set_coverage_fixture_setup_cleanup test_name) | |||||
| if(WITH_CODE_COVERAGE) | |||||
| set_tests_properties(cov_processing PROPERTIES FIXTURES_CLEANUP ${test_name}) | |||||
| endif() | |||||
| endmacro() | |||||