CMakeLists.txt
400 Bytes
# Set the minimum version of cmake required to build this project
cmake_minimum_required(VERSION 2.6)
# Set the name of the project as the directory basename
project(f_arg_max)
find_package(blc_channel)
find_package(blc_program)
add_definitions(${BL_DEFINITIONS})
include_directories(${BL_INCLUDE_DIRS})
add_executable(f_arg_max f_arg_max.cpp)
target_link_libraries(f_arg_max ${BL_LIBRARIES})