This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Google app-script to utilise Elementor Pro Froms webhook | |
* For Usage see: https://github.com/pojome/elementor/issues/5894 | |
*/ | |
/* | |
In order to enable this script, follow these steps: | |
* From your Google Sheet, from the Tools menu select Script Editor… | |
* Paste the script from this gist into the script code editor and hit Save. | |
* From the Publish menu, select Deploy as web app… |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 2.8) | |
set(CMAKE_INSTALL_PREFIX /usr) | |
project(UNITY_BUILD_NAME) | |
function(enable_unity_build UB_SUFFIX SOURCE_VARIABLE_NAME) | |
set(files ${${SOURCE_VARIABLE_NAME}}) | |
# Generate a unique filename for the unity build translation unit | |
set(unit_build_file ${CMAKE_CURRENT_BINARY_DIR}/ub_${UB_SUFFIX}.cpp) | |
# Exclude all translation units from compilation | |
set_source_files_properties(${files} PROPERTIES HEADER_FILE_ONLY true) |