This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
AudioGameGUI/AudioGameGUI.pro
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
65 lines (52 sloc)
1.52 KB
This file contains 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
#------------------------------------------------- | |
# | |
# Project created by QtCreator 2016-07-26T13:26:15 | |
# | |
#------------------------------------------------- | |
# NOTE: COMPILES UNDER WINDOWS ONLY BECAUSE OF THE | |
# ACTIVE-X COM OBJECT TDT REQUIRES!! :-( | |
QT += core gui network | |
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets | |
CONFIG += c++11 | |
DEFINES += APP_VERSION=\\\"0.1\\\" | |
RESOURCES = application.qrc | |
RC_FILE = app.rc | |
QT += axcontainer | |
# QT automatically generates the classes from the com object | |
TYPELIBS = $$system(dumpcpp -getfile {D323A622-1D13-11D4-8858-444553540000}) | |
isEmpty(TYPELIBS) { | |
message("TDT library not found!") | |
} else { | |
TYPELIBS = $$system(dumpcpp {D323A622-1D13-11D4-8858-444553540000}) | |
HEADERS += rpcoxlib.h | |
SOURCES += rpcoxlib.cpp | |
} | |
LIBS += -L"C:\\Program Files (x86)\\National Instruments\\Shared\\ExternalCompilerSupport\\C\\lib64\\msvc" \ | |
-lNIDAQmx | |
TARGET = AudioGameGUI | |
TEMPLATE = app | |
SOURCES += main.cpp\ | |
NIDAQmxInterface.cpp \ | |
StateMachineController.cpp \ | |
Mainwindow.cpp \ | |
TimerDialog.cpp \ | |
TDTInterface.cpp \ | |
trialseq.cpp \ | |
LogFileWriter.cpp \ | |
AboutDialog.cpp \ | |
SocketClient.cpp | |
HEADERS += \ | |
NIDAQmxInterface.h \ | |
StateMachineController.h \ | |
TimerDialog.h \ | |
Mainwindow.h \ | |
SettingStructures.h \ | |
TDTInterface.h \ | |
trialseq.h \ | |
LogFileWriter.h \ | |
AboutDialog.h \ | |
SocketClient.h | |
FORMS += mainwindow.ui \ | |
timerdialog.ui \ | |
AboutDialog.ui | |
DISTFILES += |