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
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 |
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
# 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 | |
# |
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
# 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 |
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
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; |