diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..28ea38a5 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,16 @@ +cmake_minimum_required(VERSION 3.14) + +project(everest-utils + VERSION 0.3.0 + DESCRIPTION "A collection of utilities for the EVerest project" + LANGUAGES CXX C +) + +find_package(everest-cmake 0.3 REQUIRED + PATHS ../everest-cmake +) + +ev_setup_cmake_variables_python_wheel() + +add_subdirectory(ev-dev-tools) +add_subdirectory(everest-testing) diff --git a/ev-dev-tools/CMakeLists.txt b/ev-dev-tools/CMakeLists.txt new file mode 100644 index 00000000..09fb42d9 --- /dev/null +++ b/ev-dev-tools/CMakeLists.txt @@ -0,0 +1,9 @@ +ev_create_pip_install_targets( + PACKAGE_NAME + "ev-dev-tools" +) + +ev_create_python_wheel_targets( + PACKAGE_NAME + "ev-dev-tools" +) diff --git a/everest-testing/CMakeLists.txt b/everest-testing/CMakeLists.txt new file mode 100644 index 00000000..a5f46ec7 --- /dev/null +++ b/everest-testing/CMakeLists.txt @@ -0,0 +1,9 @@ +ev_create_pip_install_targets( + PACKAGE_NAME + "everest-testing" +) + +ev_create_python_wheel_targets( + PACKAGE_NAME + "everest-testing" +)