[mpact][compiler] minor make comment changes (#32)
diff --git a/benchmark/CMakeLists.txt b/benchmark/CMakeLists.txt index e473f9e..f52d4bb 100644 --- a/benchmark/CMakeLists.txt +++ b/benchmark/CMakeLists.txt
@@ -1,5 +1,5 @@ #------------------------------------------------------------------------------- -# The MPACT Compiler Benchmarks +# The MPACT Compiler Python Benchmarks #------------------------------------------------------------------------------- declare_mlir_python_sources(MPACTBenchmarkPythonSources) @@ -18,6 +18,10 @@ utils/*.py ) +#------------------------------------------------------------------------------- +# Python Modules +#------------------------------------------------------------------------------- + add_mlir_python_modules(MPACTBenchmarkPythonModules ROOT_PREFIX "${MPACT_PYTHON_PACKAGES_DIR}/mpact/mpact_benchmark" INSTALL_PREFIX "python_packages/mpact/mpact_benchmark"
diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index f8d71ac..aab4f9a 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt
@@ -2,11 +2,9 @@ # The MPACT Compiler Python Modules #------------------------------------------------------------------------------- -# Disables generation of "version soname" (i.e. libFoo.so.<version>), which -# causes pure duplication as part of Python wheels. +# Disables generation of "version soname" (i.e. libFoo.so.<version>). set(CMAKE_PLATFORM_NO_VERSIONED_SONAME ON) - # The directory at which the Python import tree begins. set(MPACT_PYTHON_ROOT_DIR "${CMAKE_CURRENT_SOURCE_DIR}/mpact")