summaryrefslogtreecommitdiff
path: root/src/lua/CMakeLists.txt
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2024-01-10 20:32:01 +1100
committerjacqueline <me@jacqueline.id.au>2024-01-10 20:34:36 +1100
commit55bde70b9651b411ac0135bd4704f5b6972ea799 (patch)
tree520e502d62dabab2511a6032c1b29d86d1b1cb55 /src/lua/CMakeLists.txt
parent1b2d791a05954fd161376e3ddce0d44f74fcc6c0 (diff)
downloadtangara-fw-55bde70b9651b411ac0135bd4704f5b6972ea799.tar.gz
add accurate esp and samd versions + expose this info to lua
Diffstat (limited to 'src/lua/CMakeLists.txt')
-rw-r--r--src/lua/CMakeLists.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lua/CMakeLists.txt b/src/lua/CMakeLists.txt
index 5c67a57e..7174757a 100644
--- a/src/lua/CMakeLists.txt
+++ b/src/lua/CMakeLists.txt
@@ -3,8 +3,10 @@
# SPDX-License-Identifier: GPL-3.0-only
idf_component_register(
- SRCS "lua_thread.cpp" "bridge.cpp" "property.cpp" "lua_database.cpp" "lua_queue.cpp"
+ SRCS "lua_thread.cpp" "bridge.cpp" "property.cpp" "lua_database.cpp"
+ "lua_queue.cpp" "lua_version.cpp"
INCLUDE_DIRS "include"
REQUIRES "drivers" "lvgl" "tinyfsm" "events" "system_fsm" "database"
- "esp_timer" "battery" "esp-idf-lua" "luavgl" "lua-linenoise" "lua-term")
+ "esp_timer" "battery" "esp-idf-lua" "luavgl" "lua-linenoise" "lua-term"
+ "esp_app_format")
target_compile_options(${COMPONENT_LIB} PRIVATE ${EXTRA_WARNINGS})