21 lines
523 B
CMake
21 lines
523 B
CMake
|
#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
|
||
|
)
|