You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			29 lines
		
	
	
		
			973 B
		
	
	
	
		
			Prolog
		
	
			
		
		
	
	
			29 lines
		
	
	
		
			973 B
		
	
	
	
		
			Prolog
		
	
QT       += core gui widgets
 | 
						|
 | 
						|
CONFIG += c++17
 | 
						|
CONFIG += console
 | 
						|
 | 
						|
DESTDIR = $$PWD/bin
 | 
						|
 | 
						|
# You can make your code fail to compile if it uses deprecated APIs.
 | 
						|
# In order to do so, uncomment the following line.
 | 
						|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0
 | 
						|
 | 
						|
#############################################################
 | 
						|
## Tobii stuff
 | 
						|
#############################################################
 | 
						|
INCLUDEPATH += $$PWD/stream_engine_linux_3.0.4.6031/include
 | 
						|
DEPENDPATH  += $$PWD/stream_engine_linux_3.0.4.6031/include
 | 
						|
LIBS        += "/usr/lib/tobii/libtobii_stream_engine.so"
 | 
						|
LIBS        += -pthread
 | 
						|
##-----------------------------------------------------------
 | 
						|
 | 
						|
#############################################################
 | 
						|
## LSL stuff
 | 
						|
#############################################################
 | 
						|
LIBS += -L/usr/lib -llsl
 | 
						|
##-----------------------------------------------------------
 | 
						|
 | 
						|
SOURCES += \
 | 
						|
           main.cpp
 |