Skip to content

Commit 88eeb35

Browse files
committed
Reverted a change to the project name which broke the build entirely
1 parent c280b5a commit 88eeb35

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

CMakeLists.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
project(codal-microbit)
1+
project(codal-microbit-v2)
22

33
# Actually merge our multiple configs into a single set of values so we can query them easily.
44
# Note: This will be removed when we move to a library-ified version of the build system
@@ -54,10 +54,10 @@ set(CMAKE_SYSTEM_PROCESSOR "armv7-m" PARENT_SCOPE)
5454
include_directories(${INCLUDE_DIRS})
5555

5656
# create our target
57-
add_library(codal-microbit ${SOURCE_FILES})
57+
add_library(codal-microbit-v2 ${SOURCE_FILES})
5858

5959
target_link_libraries(
60-
codal-microbit
60+
codal-microbit-v2
6161
codal-nrf52
6262
codal-core
6363
codal-microbit-nrf5sdk
@@ -66,4 +66,4 @@ target_link_libraries(
6666
)
6767

6868
# expose it to parent cmake.
69-
target_include_directories(codal-microbit PUBLIC ${INCLUDE_DIRS})
69+
target_include_directories(codal-microbit-v2 PUBLIC ${INCLUDE_DIRS})

0 commit comments

Comments
 (0)