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