* Backport of feature-gradle
Signed-off-by: Francis ANDRE <francis.andre.kampbell@orange.fr>
* Replace '/' by '\' to comply with DOS path
Signed-off-by: Francis ANDRE <francis.andre.kampbell@orange.fr>
* Cleanup
Signed-off-by: Francis ANDRE <francis.andre.kampbell@orange.fr>
* Put environment setting at the Exec task.
Signed-off-by: Francis ANDRE <francis.andre.kampbell@orange.fr>
* Use standard release
Signed-off-by: Francis ANDRE <francis.andre.kampbell@orange.fr>
* Updated mkdoc configuration
Signed-off-by: Francis ANDRE <francis.andre.kampbell@orange.fr>
* Remove lines guarded by POCO_ENABLE_CPP11
Signed-off-by: Francis ANDRE <francis.andre.kampbell@orange.fr>
* Merge remote-tracking branch 'origin/develop' into develop
* Fix NuGet & Wix input dependencies file set.
Signed-off-by: Francis ANDRE <francis.andre.kampbell@orange.fr>
* Remaining fixes for Data2SQL switch.
* Use $global:LastExitCode instead of a local LastExitCode
* Revert "CMake patches for FreeBSD (#1989)"
This reverts commit 5d2dae5304c890dcf135dac8ef435626c6000ef9.
* Link against CMAKE_DL_LIBS instead of dl
This should be set to the right value for the target platform, see:
https://cmake.org/cmake/help/latest/variable/CMAKE_DL_LIBS.html
* remove leftover progen files
* remove Data sources and turn headers into forwards
* add SQL files #2059
* Data2sql: adjust Travis, AppVeyor & Makefiles (#2069)
* Replace Data by SQL
* Replace Data by SQL
* Replace Data by SQL
* Replace Data by SQL
* fix header forwarding
* Data2sql: Fixes for complete Travis CI success (#2071)
* Replace Data by SQL
* Replace Data by SQL
* Replace Data by SQL
* Replace Data by SQL
* Replace Data by SQL
* Restore DataFormatException
* Replace Data by SQL
* Replace Data by SQL
* Replace Data by SQL
* Replace Data by SQL
* construct RowFilter from RecordSet reference instead of pointer
* pass Container ref instead of ptr to Column
* elimitate g++ warnings
* SQL: remove raw pointers from interfaces #2094; add constness and move ops where appropriate
* tidy up Postgres
* ODBC fixes
* In the implementation for the *Traverse strategies the next method performs an unguarded list directory. If the directory is not accessible an unrecoverable error is raised thus ruining the walk. This changeset adopts and adapts the error handling protocol as defined in Python's os.walk function where errors from listdir are ignored or are reported to an optional on error callback function.
* Expand DirectoryIteratorsTest testsuite to confirm the hardened iterator behaviour over unreadable directories.
* Expand DirectoryIteratorsTest testsuite to confirm the hardened iterator behaviour over
unreadable directories. Correct bad formatting
* fix clang compile
* Add mechanism to start a task from within a task
Staying in the same thread.
* Provide seeds for a task queue creation
TaskManager::taskFinished removes the finished task from the task list
before dispatching the taskFinished notification
* fixup! Add mechanism to start a task from within a task
* fixup! Add mechanism to start a task from within a task
* Add Task::yield
on the same model as Task::sleep