mirror of
https://github.com/pocoproject/poco.git
synced 2025-08-14 06:08:16 +02:00

* sample(DBLogger): New sample to demonstrate DB logging to a file. (#4750) * sample(DBLogger): Create messages via SQL logger in a thread (#4750) * sample(DBLogger): Save messages from SQL files to an SQL database (works with SQLite) (#4750) * chore(Makefile): Data samples depend on PocoUtil (#4750) * sample(DBLogger): Refactored DBLogger with std::filesystem::directory_iterator and std::thread. * sample(DBLogger): Add missing include <condition_variable> * sample(DBLogger): Extracted log scanning and inserting functionality to class SQLLogInserter. * sample(DBLogger): Create new logging table only when using demo messages option. * feat(DBLogger): VS projects * sample(DBLogger): Acquire options from configuration file. * feat(DBLogger): regenerate VS projects (progen file change) * sample(DBLogger): Add example DBLogger.properties file. * sample(DBLogger): Process as much as possible when stopping processing. * sample(DBLogger): Meaningful defaults in properties file. * sample(DBLogger): Verify validity of database session on startup. * sample(DBLogger): Configure demo SQL channel in properties file. * chore(DBLogger): style and warnings --------- Co-authored-by: Aleksandar Fabijanic <aleks-f@users.noreply.github.com> Co-authored-by: Alex Fabijanic <alex@pocoproject.org>
12 lines
753 B
Plaintext
12 lines
753 B
Plaintext
vc.project.guid = ${vc.project.guidFromName}
|
|
vc.project.name = ${vc.project.baseName}
|
|
vc.project.target = ${vc.project.name}
|
|
vc.project.type = executable
|
|
vc.project.pocobase = ..\\..\\..
|
|
vc.project.platforms = Win32
|
|
vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md
|
|
vc.project.prototype = ${vc.project.name}_vs90.vcproj
|
|
vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\JSON\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Data\\include;..\\..\\..\\Data\\SQLParser;..\\Data\\SQLParser\\src;..\\..\\..\\Data\\SQLite\\include
|
|
vc.project.compiler.additionalOptions = /Zc:__cplusplus
|
|
vc.project.linker.dependencies = iphlpapi.lib
|