From 8151daaeea9a8df73676b4af038d3e30977959c2 Mon Sep 17 00:00:00 2001 From: "Wayne H. Shephard" Date: Fri, 29 May 2026 00:35:55 +0300 Subject: [PATCH] changed cpp path for consistency --- .idea/vcs.xml | 6 ++++++ CMakeLists.txt | 2 +- src/{iovi_space/sqlite_client => }/SQLiteClient.cpp | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 .idea/vcs.xml rename src/{iovi_space/sqlite_client => }/SQLiteClient.cpp (97%) diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index f8571ad..c18540b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ project(SQLiteClient LANGUAGES CXX) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_library(SQLiteClient STATIC src/iovi_space/sqlite_client/SQLiteClient.cpp include/iovi_space/sqlite_client/SQLiteClient.h) +add_library(SQLiteClient STATIC src/SQLiteClient.cpp include/iovi_space/sqlite_client/SQLiteClient.h) target_include_directories(SQLiteClient PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) diff --git a/src/iovi_space/sqlite_client/SQLiteClient.cpp b/src/SQLiteClient.cpp similarity index 97% rename from src/iovi_space/sqlite_client/SQLiteClient.cpp rename to src/SQLiteClient.cpp index 6f1c012..3967311 100644 --- a/src/iovi_space/sqlite_client/SQLiteClient.cpp +++ b/src/SQLiteClient.cpp @@ -1,4 +1,4 @@ -#include "../../../include/iovi_space/sqlite_client/SQLiteClient.h" +#include "../include/iovi_space/sqlite_client/SQLiteClient.h" #include