Added csv library
This commit is contained in:
parent
95dc3b1a5e
commit
e5d1df9dbc
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[submodule "vendor/csv"]
|
||||
path = vendor/csv
|
||||
url = https://github.com/ben-strasser/fast-cpp-csv-parser
|
|
@ -27,7 +27,8 @@ add_executable(regression
|
|||
)
|
||||
|
||||
target_include_directories(regression PRIVATE
|
||||
include
|
||||
"include"
|
||||
"vendor/csv"
|
||||
${Qt5_INCLUDE_DIRS}
|
||||
)
|
||||
|
||||
|
@ -45,4 +46,8 @@ if(WIN32)
|
|||
COMMAND ${CMAKE_COMMAND} -E copy ${Qt5_DIR}/../../../plugins/platforms/qwindowsd.dll $<TARGET_FILE_DIR:regression>
|
||||
COMMAND ${CMAKE_COMMAND} -E copy ${Qt5_DIR}/../../../plugins/platforms/qwindows.dll $<TARGET_FILE_DIR:regression>
|
||||
)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
add_custom_command(TARGET regression POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_SOURCE_DIR}/resources $<TARGET_FILE_DIR:regression>/resources
|
||||
)
|
1000
resources/test.CSV
Normal file
1000
resources/test.CSV
Normal file
File diff suppressed because it is too large
Load diff
20
src/main.cpp
20
src/main.cpp
|
@ -1,19 +1,27 @@
|
|||
#include <iostream>
|
||||
|
||||
#include <qmessagebox.h>
|
||||
#include <qapplication.h>
|
||||
#include "MainWindow.hpp"
|
||||
|
||||
#include <csv.h>
|
||||
|
||||
void DisplayQMessageBox(const QString& description)
|
||||
{
|
||||
QMessageBox msgBox;
|
||||
msgBox.setWindowTitle("Error");
|
||||
msgBox.setText(description);
|
||||
msgBox.setIcon(QMessageBox::Icon::Critical);
|
||||
msgBox.exec();
|
||||
}
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
QApplication app(argc, argv);
|
||||
|
||||
if (argc < 2)
|
||||
{
|
||||
QMessageBox no_args_error_box;
|
||||
no_args_error_box.setWindowTitle("Error");
|
||||
no_args_error_box.setText("Too few arguments. Need at least one CSV file.");
|
||||
no_args_error_box.setIcon(QMessageBox::Icon::Critical);
|
||||
no_args_error_box.exec();
|
||||
|
||||
DisplayQMessageBox("Too few arguments. Need at least one CSV file.");
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
1
vendor/csv
vendored
Submodule
1
vendor/csv
vendored
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 1165be530d19ed730228dd122f2df0896be8f64e
|
Loading…
Reference in a new issue