Skip to content

Commit ea3f17f

Browse files
committed
2 parents 56cdc98 + 50a34f6 commit ea3f17f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.5)
22

33
project(AudioCapture
4-
LANGUAGES CXX
4+
LANGUAGES CXX C
55
VERSION 0.1)
66

77
# Find an installed liblsl in paths set by the user (LSL_INSTALL_ROOT)
@@ -13,7 +13,6 @@ find_package(LSL REQUIRED
1313
PATH_SUFFIXES share/LSL)
1414
get_filename_component(LSL_PATH ${LSL_CONFIG} DIRECTORY)
1515
message(STATUS "Found LSL lib in ${LSL_PATH}")
16-
LSLAPP_Setup_Boilerplate()
1716

1817
set(CMAKE_INCLUDE_CURRENT_DIR ON)
1918
set(CMAKE_AUTOMOC ON)
@@ -56,6 +55,7 @@ set(THIRD_PARTY_DLLS
5655
Qt5::Multimedia
5756
Qt5::Network
5857
)
58+
5959
foreach(_lib ${THIRD_PARTY_DLLS})
6060
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD
6161
COMMAND ${CMAKE_COMMAND} -E copy_if_different

mainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ MainWindow::MainWindow(QWidget *parent, const char *config_file)
4444
connect(ui->actionAbout, &QAction::triggered, [this]() {
4545
QString infostr = QStringLiteral("LSL library version: ") +
4646
QString::number(lsl::library_version()) +
47-
"\nLSL library info:" + lsl::lsl_library_info();
47+
"\nLSL library info:" + lsl::library_info();
4848
QMessageBox::about(this, "About this app", infostr);
4949
});
5050
connect(ui->linkButton, &QPushButton::clicked, this, &MainWindow::toggleRecording);

0 commit comments

Comments
 (0)