mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-03 23:47:08 +00:00
test/gatt_client: add CMake build
This commit is contained in:
parent
a931607625
commit
f41de160e4
49
test/gatt_client/CMakeLists.txt
Normal file
49
test/gatt_client/CMakeLists.txt
Normal file
@ -0,0 +1,49 @@
|
||||
cmake_minimum_required (VERSION 3.5)
|
||||
project(gatt-client-test)
|
||||
|
||||
# fink pkgconfig
|
||||
find_package(PkgConfig REQUIRED)
|
||||
|
||||
# add CppUTest
|
||||
include_directories("/usr/local/include")
|
||||
link_directories("/usr/local/lib")
|
||||
link_libraries( CppUTest )
|
||||
link_libraries( CppUTestExt )
|
||||
|
||||
include_directories(.)
|
||||
include_directories(../../src)
|
||||
include_directories( ${CMAKE_CURRENT_BINARY_DIR})
|
||||
|
||||
set(SOURCES
|
||||
../../src/ad_parser.c
|
||||
../../src/ble/att_db.c
|
||||
../../src/ble/att_dispatch.c
|
||||
../../src/ble/gatt_client.c
|
||||
../../src/ble/le_device_db_memory.c
|
||||
../../src/btstack_linked_list.c
|
||||
../../src/btstack_memory.c
|
||||
../../src/btstack_memory_pool.c
|
||||
../../src/btstack_util.c
|
||||
../../src/hci_cmd.c
|
||||
../../src/hci_dump.c
|
||||
)
|
||||
|
||||
# create static lib
|
||||
add_library(btstack STATIC ${SOURCES})
|
||||
|
||||
# create targets
|
||||
foreach(EXAMPLE_FILE le_central.c gatt_client_test.c)
|
||||
get_filename_component(EXAMPLE ${EXAMPLE_FILE} NAME_WE)
|
||||
set (SOURCE_FILES ${EXAMPLE_FILE} mock.c)
|
||||
# profile.h
|
||||
add_custom_command(
|
||||
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/profile.h
|
||||
COMMAND ${CMAKE_SOURCE_DIR}/../../tool/compile_gatt.py
|
||||
ARGS ${CMAKE_SOURCE_DIR}/profile.gatt ${CMAKE_CURRENT_BINARY_DIR}/profile.h
|
||||
)
|
||||
list(APPEND SOURCE_FILES ${CMAKE_CURRENT_BINARY_DIR}/profile.h)
|
||||
# Use C++ Compiler
|
||||
set_source_files_properties(${EXAMPLE_FILE} mock.c PROPERTIES LANGUAGE CXX )
|
||||
add_executable(${EXAMPLE} ${SOURCE_FILES} )
|
||||
target_link_libraries(${EXAMPLE} btstack)
|
||||
endforeach(EXAMPLE_FILE)
|
Loading…
Reference in New Issue
Block a user