Skip to content

Instantly share code, notes, and snippets.

SET(CMAKE_SYSTEM_NAME Linux)
SET(CMAKE_SYSTEM_VERSION 1)
SET(CMAKE_SYSTEM_PROCESSOR armv7l)
SET(FLOAT_ABI_SUFFIX "hf")
SET(GCC_COMPILER_VERSION "" CACHE STRING "GCC Compiler version")
SET(GNU_MACHINE "arm-linux-gnueabihf" CACHE STRING "GNU compiler triple")
# specify the cross compiler
# Copyright (C) 2018-2019 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
#
# FindIE
# ------
#
# You can specify the path to Inference Engine files in IE_ROOT_DIR
#
# Fork this file to make your customizations! For example most people don't have an Ultimate license.
# Don't complain if you run it as-is an then have to uninstall Araxis Merge, etc. later on.
# See https://gist.github.com/DavidPx/b21eea6e8eac637bab19 for the eCommerce dev machine script
# Add DS Package Store and Boxstarter packages
Set-BoxstarterConfig -NugetSources "http://choco.directs.com/nuget;http://chocolatey.org/api/v2;http://www.myget.org/F/boxstarter/api/v2"
# Windows Options
Disable-UAC
@ConnorChristie
ConnorChristie / NMSHelper.java
Last active August 29, 2015 14:26
NMS Helper class for Bukkit!
package me.chiller.blockparticles.util;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;