Skip to content

Commit

Permalink
Add CMake to python packages ev-dev-tools and everest-testing (#146)
Browse files Browse the repository at this point in the history
* Add CMake to python packages ev-dev-tools and everest-testing

Signed-off-by: Andreas Heinrich <[email protected]>

* Update CMakeLists.txt

Signed-off-by: Andreas Heinrich <[email protected]>

---------

Signed-off-by: Andreas Heinrich <[email protected]>
  • Loading branch information
andistorm authored Jun 14, 2024
1 parent 84534b5 commit 0dfb7ba
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
16 changes: 16 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
9 changes: 9 additions & 0 deletions ev-dev-tools/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
ev_create_pip_install_targets(
PACKAGE_NAME
"ev-dev-tools"
)

ev_create_python_wheel_targets(
PACKAGE_NAME
"ev-dev-tools"
)
9 changes: 9 additions & 0 deletions everest-testing/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
ev_create_pip_install_targets(
PACKAGE_NAME
"everest-testing"
)

ev_create_python_wheel_targets(
PACKAGE_NAME
"everest-testing"
)

0 comments on commit 0dfb7ba

Please sign in to comment.