Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed mbed-rtos HardwareInterface EthernetInterface WebSocketClient
GoogleTest.txt.in@13:850be84c78dd, 2017-02-16 (annotated)
- Committer:
- Maxime Dupuis
- Date:
- Thu Feb 16 12:34:00 2017 -0500
- Revision:
- 13:850be84c78dd
Import HardwareInterface and mock it
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Maxime Dupuis |
13:850be84c78dd | 1 | cmake_minimum_required(VERSION 3.5) |
Maxime Dupuis |
13:850be84c78dd | 2 | |
Maxime Dupuis |
13:850be84c78dd | 3 | project(googletest-download NONE) |
Maxime Dupuis |
13:850be84c78dd | 4 | |
Maxime Dupuis |
13:850be84c78dd | 5 | include(ExternalProject) |
Maxime Dupuis |
13:850be84c78dd | 6 | ExternalProject_Add(googletest |
Maxime Dupuis |
13:850be84c78dd | 7 | GIT_REPOSITORY https://github.com/google/googletest.git |
Maxime Dupuis |
13:850be84c78dd | 8 | SOURCE_DIR "${CMAKE_BINARY_DIR}/googletest-src" |
Maxime Dupuis |
13:850be84c78dd | 9 | BINARY_DIR "${CMAKE_BINARY_DIR}/googletest-build" |
Maxime Dupuis |
13:850be84c78dd | 10 | CONFIGURE_COMMAND "" |
Maxime Dupuis |
13:850be84c78dd | 11 | BUILD_COMMAND "" |
Maxime Dupuis |
13:850be84c78dd | 12 | INSTALL_COMMAND "" |
Maxime Dupuis |
13:850be84c78dd | 13 | TEST_COMMAND "" |
Maxime Dupuis |
13:850be84c78dd | 14 | ) |
Maxime Dupuis |
13:850be84c78dd | 15 |