-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sample(DBLogger): Extracted log scanning and inserting functionality …
…to class SQLLogInserter.
- Loading branch information
Showing
6 changed files
with
422 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,12 @@ | ||
add_executable(DBLogger src/DBLogger.cpp) | ||
|
||
# Sources | ||
file(GLOB SRCS_G "src/*.cpp") | ||
POCO_SOURCES_AUTO(DBLOGGER_SRCS ${SRCS_G}) | ||
|
||
# Headers | ||
file(GLOB_RECURSE HDRS_G "src/*.h") | ||
POCO_HEADERS_AUTO(DBLOGGER_SRCS ${HDRS_G}) | ||
|
||
add_executable(DBLogger ${DBLOGGER_SRCS}) | ||
|
||
target_link_libraries(DBLogger PUBLIC Poco::Util Poco::DataSQLite) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.