Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for XCommon CMake build system on v5.2.0 and above #215

Merged
merged 3 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
lib_mic_array change log
========================

UNRELEASED
----------

* ADDED: Support for XCommon CMake build system on v5.2.0 and above
xalbertoisorna marked this conversation as resolved.
Show resolved Hide resolved

5.2.0
-----

Expand Down
15 changes: 15 additions & 0 deletions lib_mic_array/lib_build_info.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
set(LIB_NAME lib_mic_array)
set(LIB_VERSION 5.2.0)
set(LIB_DEPENDENT_MODULES "lib_xcore_math")
xalbertoisorna marked this conversation as resolved.
Show resolved Hide resolved
set(LIB_INCLUDES
api
api/mic_array
api/mic_array/cpp
api/mic_array/etc
api/mic_array/impl
src
src/etc
)
set(LIB_COMPILER_FLAGS -g -Os)

XMOS_REGISTER_MODULE()
Loading