From 6c73d6fee1a149dbdef47b223b4b03378ffbbb57 Mon Sep 17 00:00:00 2001 From: Paul D'Angio <pcdangio@gmail.com> Date: Thu, 16 Jul 2020 23:52:10 -0400 Subject: [PATCH] removed ide project files --- .gitignore | 8 ++++++-- Doxyfile => doxyfile | 0 driver_mpu9250.pro | 23 ----------------------- 3 files changed, 6 insertions(+), 25 deletions(-) rename Doxyfile => doxyfile (100%) delete mode 100644 driver_mpu9250.pro diff --git a/.gitignore b/.gitignore index c390ca5..f91a1c0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,6 @@ -*.user -doc/* +# Ignore documentation +doc/ + +# Ignore IDE files +.vscode/ +*.user \ No newline at end of file diff --git a/Doxyfile b/doxyfile similarity index 100% rename from Doxyfile rename to doxyfile diff --git a/driver_mpu9250.pro b/driver_mpu9250.pro deleted file mode 100644 index df3d96d..0000000 --- a/driver_mpu9250.pro +++ /dev/null @@ -1,23 +0,0 @@ -TEMPLATE = app -CONFIG += console c++11 -CONFIG -= app_bundle -CONFIG -= qt - -SOURCES += \ - src/driver.cpp \ - src/main_rpi.cpp \ - src/ros_node.cpp \ - src/rpi_driver.cpp - -DISTFILES += \ - CMakeLists.txt \ - README.md \ - package.xml - -HEADERS += \ - src/driver.h \ - src/ros_node.h \ - src/rpi_driver.h - -INCLUDEPATH += \ - /opt/ros/melodic/include \ -- GitLab