initial checkin

This commit is contained in:
Max 2013-12-27 20:36:42 -05:00
parent ff8845d499
commit 6eb2e677d3
1 changed files with 17 additions and 0 deletions

17
CMakeLists.txt Normal file
View File

@ -0,0 +1,17 @@
cmake_minimum_required(VERSION 2.6)
project(gr-op25 CXX C)
add_subdirectory(op25/gr-op25)
add_subdirectory(op25/gr-op25_repeater)
########################################################################
# Create uninstall target
########################################################################
configure_file(
${CMAKE_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
)