mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
fdaa5c0068
Former-commit-id: b739eba0676d9c105416d9040ffbe78b2dc4bfbd
15 lines
455 B
CMake
15 lines
455 B
CMake
project(tinkerforge)
|
|
|
|
# define the current source/header path
|
|
set(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/dependencies/include/tinkerforge)
|
|
set(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/dependencies/build/tinkerforge)
|
|
|
|
include_directories(${CURRENT_HEADER_DIR})
|
|
|
|
add_library(tinkerforge
|
|
${CURRENT_HEADER_DIR}/bricklet_led_strip.h
|
|
${CURRENT_HEADER_DIR}/ip_connection.h
|
|
|
|
${CURRENT_SOURCE_DIR}/bricklet_led_strip.c
|
|
${CURRENT_SOURCE_DIR}/ip_connection.c)
|