HackRF-Treasure-Chest/Software/BTLE/host/CMakeLists.txt

21 lines
523 B
CMake
Raw Permalink Normal View History

2022-09-22 18:26:57 +02:00
#top dir cmake project
cmake_minimum_required(VERSION 2.8)
project (btle_all)
add_subdirectory(btle-tools)
########################################################################
# Create uninstall target
########################################################################
configure_file(
${PROJECT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in
${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake
@ONLY)
add_custom_target(uninstall
${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake
)