This is an automated email from the ASF dual-hosted git repository.
apkhmv pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new 779549e133 IGNITE-23576 Fix :packaging-odbc:distZip (#4655)
779549e133 is described below
commit 779549e1333f7a8bec86692eeca4157fb21ad55e
Author: Vadim Pakhnushev <[email protected]>
AuthorDate: Wed Oct 30 14:42:56 2024 +0300
IGNITE-23576 Fix :packaging-odbc:distZip (#4655)
---
modules/platforms/build.gradle | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/modules/platforms/build.gradle b/modules/platforms/build.gradle
index e36e8253c3..44c93e4dce 100644
--- a/modules/platforms/build.gradle
+++ b/modules/platforms/build.gradle
@@ -91,24 +91,26 @@ cmake {
}
def cmakeConfigureClient = tasks.register('cmakeConfigureClient',
CMakeConfigureTask) {
+ dependsOn copyPlatformsHeaders
configureFromProject() // uses everything in the cmake { ... } section.
getDef().ENABLE_CLIENT = 'ON'
getDef().ENABLE_ODBC = 'OFF'
}
def cmakeBuildClient = tasks.register('cmakeBuildClient', CMakeBuildTask) {
- dependsOn cmakeConfigureClient, copyPlatformsHeaders
+ dependsOn cmakeConfigureClient
configureFromProject() // uses everything in the cmake { ... } section.
}
def cmakeConfigureOdbc = tasks.register('cmakeConfigureOdbc',
CMakeConfigureTask) {
+ dependsOn copyPlatformsHeaders
configureFromProject() // uses everything in the cmake { ... } section.
getDef().ENABLE_CLIENT = 'OFF'
getDef().ENABLE_ODBC = 'ON'
}
def cmakeBuildOdbc = tasks.register('cmakeBuildOdbc', CMakeBuildTask) {
- dependsOn cmakeConfigureOdbc, copyPlatformsHeaders
+ dependsOn cmakeConfigureOdbc
configureFromProject() // uses everything in the cmake { ... } section.
}