mirror of
				https://github.com/hyperion-project/hyperion.ng.git
				synced 2025-03-01 10:33:28 +00:00 
			
		
		
		
	* multi fix commit - refactoring leddevicefactory - adalight: default for "delayAfterConnect" is 1s now - needed for most arduino's because of there special behaviour on open - fadecandy: new option for disabling configuration send - if you want to keep your fadecandy defaults - Hyperion.cpp: simplify createSmoothing discussed in #105 - smoothing: -- add option for continuous output -- when updatedelay>0 and continousOutput is disabled, buffer is flushed correctly after no input is detected * add doxygen to travis
		
			
				
	
	
		
			17 lines
		
	
	
		
			495 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			495 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
# install osx deps for hyperion compile
 | 
						|
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
 | 
						|
	echo "Install OSX deps"
 | 
						|
	brew update
 | 
						|
	brew install qt5
 | 
						|
	brew install libusb
 | 
						|
	brew install cmake
 | 
						|
fi
 | 
						|
 | 
						|
# install linux deps for hyperion compile
 | 
						|
if [[ $TRAVIS_OS_NAME == 'linux' ]]; then
 | 
						|
	echo "Install linux deps"
 | 
						|
	sudo apt-get -qq update ; sudo apt-get install -qq -y qtbase5-dev libqt5serialport5-dev libusb-1.0-0-dev python-dev libxrender-dev libavahi-core-dev libavahi-compat-libdnssd-dev doxygen
 | 
						|
fi
 | 
						|
 |