diff --git a/cpp/examples/build.sh b/cpp/examples/build.sh index 001cdeec694..3d2caefa2b9 100755 --- a/cpp/examples/build.sh +++ b/cpp/examples/build.sh @@ -28,3 +28,4 @@ build_example() { build_example basic build_example strings build_example nested_types +build_example streams diff --git a/python/cudf_kafka/CMakeLists.txt b/python/cudf_kafka/CMakeLists.txt index 6bb2b3145e4..9f063314e29 100644 --- a/python/cudf_kafka/CMakeLists.txt +++ b/python/cudf_kafka/CMakeLists.txt @@ -23,11 +23,7 @@ include(../../fetch_rapids.cmake) project( cudf-kafka-python VERSION ${cudf_kafka_version} - LANGUAGES # TODO: Building Python extension modules via the python_extension_module requires the C - # language to be enabled here. The test project that is built in scikit-build to verify - # various linking options for the python library is hardcoded to build with C, so until - # that is fixed we need to keep C. - C CXX + LANGUAGES CXX ) find_package(cudf_kafka ${cudf_kafka_version} REQUIRED)