Skip to content

Instantly share code, notes, and snippets.

View cinderblocks's full-sized avatar

¡Cinder! ㊝ cinderblocks

  • San Antonio, TX
View GitHub Profile
@cinderblocks
cinderblocks / PrecompiledHeader.cmake
Created February 22, 2018 03:37 — forked from larsch/PrecompiledHeader.cmake
cmake module for setting up precompiled headers (MSVC & GCC)
# Function for setting up precompiled headers. Usage:
#
# add_library/executable(target
# pchheader.c pchheader.cpp pchheader.h)
#
# add_precompiled_header(target pchheader.h
# [FORCEINCLUDE]
# [SOURCE_C pchheader.c]
# [SOURCE_CXX pchheader.cpp])
#