CMakeLists.txt
404 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(i_gaussian)
find_package(blc_channel)
find_package(blc_program)
add_definitions(${BL_DEFINITIONS})
include_directories(${BL_INCLUDE_DIRS})
add_executable(i_gaussian i_gaussian.cpp)
target_link_libraries(i_gaussian ${BL_LIBRARIES})