Skip to content

Commit 014cb79

Browse files
committed
No more depdency on the now-defunct "Base" library
1 parent e8cb98f commit 014cb79

File tree

4 files changed

+2
-9
lines changed

4 files changed

+2
-9
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ set(COMPONENT_ADD_INCLUDEDIRS
99
register_component()
1010

1111
target_compile_definitions(${COMPONENT_TARGET} PUBLIC -DESP32)
12-
target_compile_options(${COMPONENT_TARGET} PRIVATE -fno-rtti)
12+
target_compile_options(${COMPONENT_TARGET} PRIVATE -frtti)

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ You can quickly and easily add this library to your project in PlatformIO by sim
4848

4949
```ini
5050
lib_deps =
51-
https://github.com/Flowduino/ESPressio-Base.git
5251
https://github.com/Flowduino/ESPressio-Threads.git
5352
```
5453

component.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
COMPONENT_ADD_INCLUDEDIRS := include
22
COMPONENT_SRCDIRS := src
3-
CXXFLAGS += -fno-rtti
3+
CXXFLAGS += -frtti
44
CXXFLAGS += -DESPRESSIO_THREADS
55
CXXFLAGS += -DESPRESSIO_THREADS_VERSION_MAJOR=0
66
CXXFLAGS += -DESPRESSIO_THREADS_VERSION_MINOR=0

library.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,5 @@
1515
"frameworks": "arduino",
1616
"platforms": "espressif32,espressif8266",
1717
"dependencies": [
18-
{
19-
"name": "Flowduino ESPressio-Base",
20-
"version": "0.0.1",
21-
"url": "https://github.com/Flowduino/ESPressio-Base.git",
22-
"platforms": "*"
23-
}
2418
]
2519
}

0 commit comments

Comments
 (0)