Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upFixed #98 by removing camelCasing of library names #99
Conversation
Besides the specific comments I've left, it looks that this PR doesn't pass all required checks. |
@@ -1,3 +1,4 @@ | |||
set(CMAKE_TOOLCHAIN_FILE ../cmake/Arduino-Toolchain.cmake) |
This comment has been minimized.
This comment has been minimized.
@@ -27,10 +27,6 @@ function(find_arduino_library _target_name _library_name) | |||
|
|||
is_platform_library(${_library_name} is_plib) # Detect whether library is a platform library | |||
|
|||
if (NOT parsed_args_3RD_PARTY AND NOT is_plib) |
This comment has been minimized.
This comment has been minimized.
MrPointer
Feb 12, 2020
Member
I'm afraid you can't simply delete this block.
It's been a long time since I've written any code in this project, so I don't exactly remember the details, but I do remember that this is important, for other libraries.
You've got to find another way around this.
marthinwurer commentedFeb 6, 2020
CamelCasing of library names caused issues with using the built-in SD library. I removed it, and fixed up the case where the stepper library example did not match that in the wiki docs. I also added an example with the SD library linked to act as a regression test.
This change might break existing code that uses the CamelCasing feature.