summaryrefslogtreecommitdiff
path: root/src/lua/CMakeLists.txt
blob: d89b22e8d6b6db7008c65a91182e2f09155c253f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Copyright 2023 jacqueline <me@jacqueline.id.au>
#
# SPDX-License-Identifier: GPL-3.0-only

idf_component_register(
  SRCS "lua_thread.cpp" "bridge.cpp" "property.cpp" "lua_database.cpp"
  "lua_queue.cpp" "lua_version.cpp" "lua_controls.cpp"
  INCLUDE_DIRS "include"
  REQUIRES "drivers" "lvgl" "tinyfsm" "events" "system_fsm" "database"
  "esp_timer" "battery" "esp-idf-lua" "luavgl" "lua-linenoise" "lua-term"
  "esp_app_format")
target_compile_options(${COMPONENT_LIB} PRIVATE ${EXTRA_WARNINGS})