Skip to content

Commit 7081443

Browse files
authored
Merge pull request #4 from pimoroni/patch-default-modules
default.cmake: Enable Pimoroni common modules.
2 parents bb78d0f + a45606d commit 7081443

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

modules/default.cmake

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,14 @@ set(CMAKE_CXX_STANDARD 17)
1616

1717
include(c/example/micropython)
1818

19-
# include(micropython-common)
20-
# enable_ulab()
19+
include(micropython-common)
20+
21+
if(PICO_BOARD STREQUAL "pga2350")
22+
enable_ulab()
23+
endif()
2124

2225
# C++ Magic Memory
23-
# include(cppmem/micropython)
26+
include(cppmem/micropython)
2427

2528
# Disable build-busting C++ exceptions
2629
include(micropython-disable-exceptions)

0 commit comments

Comments
 (0)