-
-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' of https://github.com/danielhrisca/asammdf …
…into get_bits
- Loading branch information
Showing
15 changed files
with
154 additions
and
255 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
cmake_minimum_required(VERSION 3.15...3.26) | ||
|
||
project( | ||
${SKBUILD_PROJECT_NAME} | ||
LANGUAGES C | ||
VERSION ${SKBUILD_PROJECT_VERSION}) | ||
|
||
find_package( | ||
Python | ||
COMPONENTS | ||
Interpreter | ||
Development.Module | ||
${SKBUILD_SABI_COMPONENT} | ||
NumPy | ||
REQUIRED) | ||
|
||
python_add_library(cutils | ||
MODULE | ||
src/asammdf/blocks/cutils.c | ||
WITH_SOABI USE_SABI 3.9) | ||
|
||
target_link_libraries(cutils PRIVATE Python::NumPy) | ||
|
||
install(TARGETS cutils DESTINATION "asammdf/blocks") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.