forked from electro/esp-irblaster
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
208 B
10 lines
208 B
3 years ago
|
cmake_minimum_required(VERSION 3.10)
|
||
|
|
||
|
project(console-argtable3)
|
||
|
|
||
|
add_library(argtable3 argtable3.c)
|
||
|
target_include_directories(argtable3
|
||
|
PUBLIC "."
|
||
|
)
|
||
|
target_link_libraries(argtable3 PRIVATE console)
|