SOES/soes/CMakeLists.txt
Hans-Erik Floryd 1a490c5eb8 use HAL (no os required)
Also make HAL a subdirectory of soes for easy including of soes sources
in other projects
2015-05-21 11:11:16 +02:00

21 lines
303 B
CMake

# NOTE: add headers to make them show up in an IDE
add_library (soes
esc.c
esc.h
esc_coe.c
esc_coe.h
esc_foe.c
esc_foe.h
${HAL_SOURCES}
)
include_directories(${HAL_INCLUDES})
install (TARGETS soes DESTINATION bin)
install (FILES
esc.h
esc_coe.h
esc_foe.h
DESTINATION include)