Skip to content

Commit

Permalink
Add interface library for pico-sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanplusplus committed Nov 4, 2024
1 parent a500624 commit 02700da
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04, macos-12, macos-13]
os: [ubuntu-22.04, ubuntu-24.04, macos-13]

steps:
- name: Install CppUTest
Expand Down
13 changes: 13 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
add_library(tiny_gea3 INTERFACE)

target_sources(tiny_gea3 INTERFACE
${CMAKE_CURRENT_LIST_DIR}/src/tiny_erd_client.c
${CMAKE_CURRENT_LIST_DIR}/src/tiny_gea3_interface.c
${CMAKE_CURRENT_LIST_DIR}/src/tiny_queue.c
)

target_include_directories(tiny_gea3 INTERFACE ${CMAKE_CURRENT_LIST_DIR}/include)

target_link_libraries(tiny_gea3 INTERFACE
tiny
)
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"maintainer": true
}
],
"version": "1.0.0",
"version": "1.0.1",
"frameworks": "*",
"platforms": "*",
"export": {
Expand Down

0 comments on commit 02700da

Please sign in to comment.