Skip to content

Commit

Permalink
HPCC-29432 Ensure eclblas and cassandraembed are in platform
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Gardner <[email protected]>
  • Loading branch information
Michael-Gardner committed Jul 24, 2023
1 parent e24244a commit 78079c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions cmake_modules/options.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ option(DEVEL "Enable the building/inclusion of a Development component." OFF)
option(CLIENTTOOLS_ONLY "Enable the building of Client Tools only." OFF)
option(INCLUDE_PLUGINS "Enable the building of platform and all plugins for testing purposes" OFF)
option(USE_CASSANDRA "Include the Cassandra plugin in the base package" ON)
option(USE_ECLBLAS "Include the ECLBLAS plugin in the base package" ON)
option(PLUGIN "Enable building of a plugin" OFF)
option(USE_SHLIBDEPS "Enable the use of dpkg-shlibdeps on ubuntu packaging" OFF)

Expand Down
2 changes: 0 additions & 2 deletions cmake_modules/plugins.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ set(VCPKG_INCLUDE "(windows | osx | linux)")
set(VCPKG_SUPPRESS "(!windows & !osx & !linux)")

set(PLUGINS_LIST
CASSANDRAEMBED
COUCHBASEEMBED
ECLBLAS
H3
JAVAEMBED
KAFKA
Expand Down
4 changes: 2 additions & 2 deletions plugins/eclblas/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@

project(eclblas)

if(ECLBLAS)
if(ECLBLAS OR USE_ECLBLAS)
ADD_PLUGIN(eclblas)
if(MAKE_ECLBLAS)
if(MAKE_ECLBLAS OR USE_ECLBLAS)
find_package(OpenBLAS REQUIRED)

add_definitions(-D_USE_CBLAS)
Expand Down

0 comments on commit 78079c1

Please sign in to comment.