Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am jehoffmann on github.
  • I am jhoffmann (https://keybase.io/jhoffmann) on keybase.
  • I have a public key ASDXujzBZ1u_Vs8s_G3xCu7YvTCgHM1LbKNEKi63s515jwo

To claim this, I am signing this object:

@jehoffmann
jehoffmann / External_GTest.cmake
Created September 7, 2017 05:08 — forked from ClintLiddick/External_GTest.cmake
CMake ExternalProject_Add for Google Mock (gmock) and Google Test (gtest) Libraries
find_package(Threads REQUIRED)
# Enable ExternalProject CMake module
include(ExternalProject)
# Download and install GoogleTest
ExternalProject_Add(
googletest
URL https://github.com/google/googletest/archive/release-1.8.0.zip
PREFIX ${CMAKE_CURRENT_BINARY_DIR}/gtest
@jehoffmann
jehoffmann / build_openesptools.sh
Last active January 23, 2018 07:50
Build ESP Toolchain on Yosemite #esp8266 #esp #crosscompile
#!/usr/bin/env bash
hdiutil create -size 10g -fs "Case-sensitive HFS+" -volname ESPTools ESPTools.sparsebundle
hdiutil attach ESPTools.sparsebundle
cd /Volumes/ESPTools
git clone https://github.com/pfalcon/esp-open-sdk.git --recursive
cd esp-open-sdk