cmake_minimum_required(VERSION 3.10.0)
project(FuncPointerPrj VERSION 0.1.0 LANGUAGES C)

# Add the dummy library
add_subdirectory(Libs/Sensor)

add_executable(FuncPointerPrj main.c)

# Link the dummy library to the executable
target_link_libraries(FuncPointerPrj PRIVATE Sensor)