Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ ui_*.h
*.qmlc
*.jsc
Makefile*
*build-*
*build-*/
build/
*-build-*/
*.qm
*.prl

Expand All @@ -50,3 +52,13 @@ compile_commands.json

# QtCreator local machine specific files for imported projects
*creator.user*

#two downloaded folders + build
/DSI_API*/
/liblsl*/
/build/
/API*/
/LSL/*

/dsi-api*/
/dsi-api-v1.18.2/
20 changes: 20 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"cmake.configureArgs": [
"-DLSL_DIR=YOUR_PATH_TO_LSL_LIBRARY", // Specify the path to the LSL cmake directory
"-DQt5_DIR=YOUR_PATH_TO_QT5_LIBRARY", // Specify the path to the Qt5 cmake directory
"-D CMAKE_PREFIX_PATH=YOUR_PATH_TO_QT5_MINGW" // Specify the path to Qt5 mingw81_64 or mingw64

],
"files.associations": {
"mainwindow.h": "c",
"xstring": "cpp",
"iostream": "cpp",
"qbytearray": "cpp",
"initializer_list": "cpp",
"iterator": "cpp",
"memory": "cpp",
"xmemory": "cpp",
"qtgui": "cpp"
}

}
Loading