Skip to content

Commit

Permalink
removing cli build from msvc python wheel CI
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-dixon committed Aug 5, 2024
1 parent a65b176 commit d49b662
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ jobs:
-DNO_JAVA_WRAPPER=ON
-DNO_CXX_WRAPPER=ON
-DNO_IDL_WRAPPER=ON
-DNO_CLI=ON
-DNO_MEMCACHE=ON
-DCMAKE_INSTALL_PREFIX=install
&& cmake --build build -j --config Release
Expand Down
1 change: 1 addition & 0 deletions source/bin/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
if( "${NO_CLI}" )
message( WARNING "Not building uda CLI due to option NO_CLI" )
return()
endif()

Expand Down
6 changes: 3 additions & 3 deletions source/wrappers/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
########################################################################################################################
# Dependencies

find_package( IDL )
find_package( Java 1.6 )
find_package( JNI )
find_package( Boost )

if( NOT NO_CXX_WRAPPER )
Expand All @@ -23,6 +20,7 @@ else()
endif()

if( NOT NO_IDL_WRAPPER )
find_package( IDL )
if( IDL_FOUND )
remove_definitions( -Wall -Werror )
add_subdirectory( idl )
Expand All @@ -35,6 +33,8 @@ else()
endif()

if( NOT NO_JAVA_WRAPPER )
find_package( Java 1.6 )
find_package( JNI )
if( JAVA_FOUND AND JNI_FOUND )
add_subdirectory( java )
else()
Expand Down

0 comments on commit d49b662

Please sign in to comment.