mirror of
https://github.com/eddyem/eddys_snippets.git
synced 2025-12-06 18:55:16 +03:00
9 lines
240 B
CMake
9 lines
240 B
CMake
cmake_minimum_required(VERSION 3.9)
|
|
|
|
include_directories(..)
|
|
link_libraries(i2csensorsPTH usefull_macros -lm)
|
|
|
|
add_executable(single single_sensor.c)
|
|
add_executable(log logmany.c)
|
|
#target_link_libraries(single i2csensorsPTH usefull_macros)
|